Class RowFilter.Interleave (2.13.0)

public static final class RowFilter.Interleave extends GeneratedMessageV3 implements RowFilter.InterleaveOrBuilder

A RowFilter which sends each row to each of several component RowFilters and interleaves the results.

Protobuf type google.bigtable.v2.RowFilter.Interleave

Static Fields

FILTERS_FIELD_NUMBER

public static final int FILTERS_FIELD_NUMBER
Field Value
TypeDescription
int

Static Methods

getDefaultInstance()

public static RowFilter.Interleave getDefaultInstance()
Returns
TypeDescription
RowFilter.Interleave

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

newBuilder()

public static RowFilter.Interleave.Builder newBuilder()
Returns
TypeDescription
RowFilter.Interleave.Builder

newBuilder(RowFilter.Interleave prototype)

public static RowFilter.Interleave.Builder newBuilder(RowFilter.Interleave prototype)
Parameter
NameDescription
prototypeRowFilter.Interleave
Returns
TypeDescription
RowFilter.Interleave.Builder

parseDelimitedFrom(InputStream input)

public static RowFilter.Interleave parseDelimitedFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static RowFilter.Interleave parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
IOException

parseFrom(byte[] data)

public static RowFilter.Interleave parseFrom(byte[] data)
Parameter
NameDescription
databyte[]
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static RowFilter.Interleave parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
databyte[]
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data)

public static RowFilter.Interleave parseFrom(ByteString data)
Parameter
NameDescription
dataByteString
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static RowFilter.Interleave parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteString
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static RowFilter.Interleave parseFrom(CodedInputStream input)
Parameter
NameDescription
inputCodedInputStream
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static RowFilter.Interleave parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
IOException

parseFrom(InputStream input)

public static RowFilter.Interleave parseFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static RowFilter.Interleave parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
IOException

parseFrom(ByteBuffer data)

public static RowFilter.Interleave parseFrom(ByteBuffer data)
Parameter
NameDescription
dataByteBuffer
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static RowFilter.Interleave parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteBuffer
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RowFilter.Interleave
Exceptions
TypeDescription
InvalidProtocolBufferException

parser()

public static Parser<RowFilter.Interleave> parser()
Returns
TypeDescription
Parser<Interleave>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getDefaultInstanceForType()

public RowFilter.Interleave getDefaultInstanceForType()
Returns
TypeDescription
RowFilter.Interleave

getFilters(int index)

public RowFilter getFilters(int index)

The elements of "filters" all process a copy of the input row, and the results are pooled, sorted, and combined into a single output row. If multiple cells are produced with the same column and timestamp, they will all appear in the output row in an unspecified mutual order. Consider the following example, with three filters: input row

|

        |                         |                         |
       f(0)                      f(1)                      f(2)
        |                         |                         |
 1: foo,bar,10,x             foo,bar,10,z              far,bar,7,a
 2: foo,blah,11,z            far,blah,5,x              far,blah,5,x
        |                         |                         |
        -----------------------------------------------------
                                  |
 1:                      foo,bar,10,z   // could have switched with #2
 2:                      foo,bar,10,x   // could have switched with #1
 3:                      foo,blah,11,z
 4:                      far,bar,7,a
 5:                      far,blah,5,x   // identical to #6
 6:                      far,blah,5,x   // identical to #5

All interleaved filters are executed atomically.

repeated .google.bigtable.v2.RowFilter filters = 1;

Parameter
NameDescription
indexint
Returns
TypeDescription
RowFilter

getFiltersCount()

public int getFiltersCount()

The elements of "filters" all process a copy of the input row, and the results are pooled, sorted, and combined into a single output row. If multiple cells are produced with the same column and timestamp, they will all appear in the output row in an unspecified mutual order. Consider the following example, with three filters: input row

|

        |                         |                         |
       f(0)                      f(1)                      f(2)
        |                         |                         |
 1: foo,bar,10,x             foo,bar,10,z              far,bar,7,a
 2: foo,blah,11,z            far,blah,5,x              far,blah,5,x
        |                         |                         |
        -----------------------------------------------------
                                  |
 1:                      foo,bar,10,z   // could have switched with #2
 2:                      foo,bar,10,x   // could have switched with #1
 3:                      foo,blah,11,z
 4:                      far,bar,7,a
 5:                      far,blah,5,x   // identical to #6
 6:                      far,blah,5,x   // identical to #5

All interleaved filters are executed atomically.

repeated .google.bigtable.v2.RowFilter filters = 1;

Returns
TypeDescription
int

getFiltersList()

public List<RowFilter> getFiltersList()

The elements of "filters" all process a copy of the input row, and the results are pooled, sorted, and combined into a single output row. If multiple cells are produced with the same column and timestamp, they will all appear in the output row in an unspecified mutual order. Consider the following example, with three filters: input row

|

        |                         |                         |
       f(0)                      f(1)                      f(2)
        |                         |                         |
 1: foo,bar,10,x             foo,bar,10,z              far,bar,7,a
 2: foo,blah,11,z            far,blah,5,x              far,blah,5,x
        |                         |                         |
        -----------------------------------------------------
                                  |
 1:                      foo,bar,10,z   // could have switched with #2
 2:                      foo,bar,10,x   // could have switched with #1
 3:                      foo,blah,11,z
 4:                      far,bar,7,a
 5:                      far,blah,5,x   // identical to #6
 6:                      far,blah,5,x   // identical to #5

All interleaved filters are executed atomically.

repeated .google.bigtable.v2.RowFilter filters = 1;

Returns
TypeDescription
List<RowFilter>

getFiltersOrBuilder(int index)

public RowFilterOrBuilder getFiltersOrBuilder(int index)

The elements of "filters" all process a copy of the input row, and the results are pooled, sorted, and combined into a single output row. If multiple cells are produced with the same column and timestamp, they will all appear in the output row in an unspecified mutual order. Consider the following example, with three filters: input row

|

        |                         |                         |
       f(0)                      f(1)                      f(2)
        |                         |                         |
 1: foo,bar,10,x             foo,bar,10,z              far,bar,7,a
 2: foo,blah,11,z            far,blah,5,x              far,blah,5,x
        |                         |                         |
        -----------------------------------------------------
                                  |
 1:                      foo,bar,10,z   // could have switched with #2
 2:                      foo,bar,10,x   // could have switched with #1
 3:                      foo,blah,11,z
 4:                      far,bar,7,a
 5:                      far,blah,5,x   // identical to #6
 6:                      far,blah,5,x   // identical to #5

All interleaved filters are executed atomically.

repeated .google.bigtable.v2.RowFilter filters = 1;

Parameter
NameDescription
indexint
Returns
TypeDescription
RowFilterOrBuilder

getFiltersOrBuilderList()

public List<? extends RowFilterOrBuilder> getFiltersOrBuilderList()

The elements of "filters" all process a copy of the input row, and the results are pooled, sorted, and combined into a single output row. If multiple cells are produced with the same column and timestamp, they will all appear in the output row in an unspecified mutual order. Consider the following example, with three filters: input row

|

        |                         |                         |
       f(0)                      f(1)                      f(2)
        |                         |                         |
 1: foo,bar,10,x             foo,bar,10,z              far,bar,7,a
 2: foo,blah,11,z            far,blah,5,x              far,blah,5,x
        |                         |                         |
        -----------------------------------------------------
                                  |
 1:                      foo,bar,10,z   // could have switched with #2
 2:                      foo,bar,10,x   // could have switched with #1
 3:                      foo,blah,11,z
 4:                      far,bar,7,a
 5:                      far,blah,5,x   // identical to #6
 6:                      far,blah,5,x   // identical to #5

All interleaved filters are executed atomically.

repeated .google.bigtable.v2.RowFilter filters = 1;

Returns
TypeDescription
List<? extends com.google.bigtable.v2.RowFilterOrBuilder>

getParserForType()

public Parser<RowFilter.Interleave> getParserForType()
Returns
TypeDescription
Parser<Interleave>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
TypeDescription
int
Overrides

getUnknownFields()

public final UnknownFieldSet getUnknownFields()
Returns
TypeDescription
UnknownFieldSet
Overrides

hashCode()

public int hashCode()
Returns
TypeDescription
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

newBuilderForType()

public RowFilter.Interleave.Builder newBuilderForType()
Returns
TypeDescription
RowFilter.Interleave.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected RowFilter.Interleave.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
NameDescription
parentBuilderParent
Returns
TypeDescription
RowFilter.Interleave.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
NameDescription
unusedUnusedPrivateParameter
Returns
TypeDescription
Object
Overrides

toBuilder()

public RowFilter.Interleave.Builder toBuilder()
Returns
TypeDescription
RowFilter.Interleave.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
NameDescription
outputCodedOutputStream
Overrides Exceptions
TypeDescription
IOException