com.google.cloud.bigtable.hbase.adapters.filters
Interface UnsupportedStatusCollector<S extends Filter>
-
- All Known Implementing Classes:
- FilterListAdapter
public interface UnsupportedStatusCollector<S extends Filter>
An interface that classes should implement if they're able to contribute meaningfully to collecting unsupported status objects from child filters.- Version:
- $Id: $Id
- Author:
- sduskis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
collectUnsupportedStatuses(FilterAdapterContext context, S filter, List<FilterSupportStatus> unsupportedStatuses)
Collect FilterSupportStatuses from the filter Filter and all subfilters.
-
-
-
Method Detail
-
collectUnsupportedStatuses
void collectUnsupportedStatuses(FilterAdapterContext context, S filter, List<FilterSupportStatus> unsupportedStatuses)
Collect FilterSupportStatuses from the filter Filter and all subfilters.- Parameters:
context
- aFilterAdapterContext
object.filter
- a S object.unsupportedStatuses
- aList
object.
-
-