com.google.cloud.bigtable.hbase.adapters.filters
Class ColumnRangeFilterAdapter
- java.lang.Object
-
- com.google.cloud.bigtable.hbase.adapters.filters.TypedFilterAdapterBase<ColumnRangeFilter>
-
- com.google.cloud.bigtable.hbase.adapters.filters.ColumnRangeFilterAdapter
-
- All Implemented Interfaces:
- TypedFilterAdapter<ColumnRangeFilter>
public class ColumnRangeFilterAdapter extends TypedFilterAdapterBase<ColumnRangeFilter>
Adapter for a single ColumnRangeFilter to a Cloud Bigtable RowFilter.- Version:
- $Id: $Id
- Author:
- sduskis
-
-
Constructor Summary
Constructors Constructor and Description ColumnRangeFilterAdapter()
-
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, ColumnRangeFilter filter)
Adapt the given filter.FilterSupportStatus
isFilterSupported(FilterAdapterContext context, ColumnRangeFilter filter)
Determine if the given filter can be adapted to a Bigtable RowFilter.-
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, ColumnRangeFilter 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.
-
isFilterSupported
public FilterSupportStatus isFilterSupported(FilterAdapterContext context, ColumnRangeFilter 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.
-
-