Package com.google.bigtable.v2
Interface RowFilter.ChainOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RowFilter.Chain
,RowFilter.Chain.Builder
- Enclosing class:
- RowFilter
public static interface RowFilter.ChainOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RowFilter
getFilters(int index)
The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ...int
getFiltersCount()
The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ...List<RowFilter>
getFiltersList()
The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ...RowFilterOrBuilder
getFiltersOrBuilder(int index)
The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ...List<? extends RowFilterOrBuilder>
getFiltersOrBuilderList()
The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ...-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFiltersList
List<RowFilter> getFiltersList()
The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ... -> f(N) -> out row The full chain is executed atomically.
repeated .google.bigtable.v2.RowFilter filters = 1;
-
getFilters
RowFilter getFilters(int index)
The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ... -> f(N) -> out row The full chain is executed atomically.
repeated .google.bigtable.v2.RowFilter filters = 1;
-
getFiltersCount
int getFiltersCount()
The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ... -> f(N) -> out row The full chain is executed atomically.
repeated .google.bigtable.v2.RowFilter filters = 1;
-
getFiltersOrBuilderList
List<? extends RowFilterOrBuilder> getFiltersOrBuilderList()
The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ... -> f(N) -> out row The full chain is executed atomically.
repeated .google.bigtable.v2.RowFilter filters = 1;
-
getFiltersOrBuilder
RowFilterOrBuilder getFiltersOrBuilder(int index)
The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ... -> f(N) -> out row The full chain is executed atomically.
repeated .google.bigtable.v2.RowFilter filters = 1;
-
-