com.google.cloud.bigtable.hbase.adapters.filters
Class BigtableFilterAdapter
- java.lang.Object
-
- com.google.cloud.bigtable.hbase.adapters.filters.TypedFilterAdapterBase<BigtableFilter>
-
- com.google.cloud.bigtable.hbase.adapters.filters.BigtableFilterAdapter
-
- All Implemented Interfaces:
- TypedFilterAdapter<BigtableFilter>
public class BigtableFilterAdapter extends TypedFilterAdapterBase<BigtableFilter>
Converts aBigtableFilter
to aRowFilter
.
-
-
Constructor Summary
Constructors Constructor and Description BigtableFilterAdapter()
-
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, BigtableFilter filter)
Adapt the given filter.FilterSupportStatus
isFilterSupported(FilterAdapterContext context, BigtableFilter 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, BigtableFilter filter) throws IOException
Description copied from interface:TypedFilterAdapter
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, BigtableFilter filter)
Description copied from interface:TypedFilterAdapter
Determine if the given filter can be adapted to a Bigtable RowFilter.- Parameters:
context
- aFilterAdapterContext
object.filter
- a S object.- Returns:
- a
FilterSupportStatus
object.
-
-