com.google.cloud.bigtable.hbase.adapters.filters
Class ValueFilterAdapter
- java.lang.Object
-
- com.google.cloud.bigtable.hbase.adapters.filters.TypedFilterAdapterBase<ValueFilter>
-
- com.google.cloud.bigtable.hbase.adapters.filters.ValueFilterAdapter
-
- All Implemented Interfaces:
- TypedFilterAdapter<ValueFilter>
public class ValueFilterAdapter extends TypedFilterAdapterBase<ValueFilter>
Adapt a single HBase ValueFilter.- Version:
- $Id: $Id
- Author:
- sduskis
-
-
Constructor Summary
Constructors Constructor and Description ValueFilterAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description com.google.cloud.bigtable.data.v2.models.Filters.Filter
adapt(FilterAdapterContext context, ValueFilter filter)
Adapt the given filter.FilterSupportStatus
isFilterSupported(FilterAdapterContext context, ValueFilter filter)
Determine if the given filter can be adapted to a Bigtable RowFilter.com.google.cloud.bigtable.data.v2.models.Filters.Filter
toFilter(FilterAdapterContext context, ValueFilter filter)
-
Methods inherited from class com.google.cloud.bigtable.hbase.adapters.filters.TypedFilterAdapterBase
getIndexScanHint
-
-
-
-
Method Detail
-
adapt
public com.google.cloud.bigtable.data.v2.models.Filters.Filter adapt(FilterAdapterContext context, ValueFilter filter) throws IOException
Adapt the given filter. Implementers of this method should assume that isFilterSupported has already been called with a result indicating it is in fact supproted.- Parameters:
context
- aFilterAdapterContext
object.filter
- a S object.- Returns:
- a
Filters.Filter
object. - Throws:
IOException
- if any.
-
toFilter
public com.google.cloud.bigtable.data.v2.models.Filters.Filter toFilter(FilterAdapterContext context, ValueFilter filter) throws IOException
- Throws:
IOException
-
isFilterSupported
public FilterSupportStatus isFilterSupported(FilterAdapterContext context, ValueFilter filter)
Determine if the given filter can be adapted to a Bigtable RowFilter.- Parameters:
context
- aFilterAdapterContext
object.filter
- a S object.- Returns:
- a
FilterSupportStatus
object.
-
-