Class Filters.ValueFilter (2.39.2)

public static final class Filters.ValueFilter implements Serializable

Inheritance

java.lang.Object > Filters.ValueFilter

Implements

Serializable

Methods

exactMatch(ByteString value)

public Filters.Filter exactMatch(ByteString value)

Matches only cells with values that match the given value.

Parameter
Name Description
value ByteString
Returns
Type Description
Filters.Filter

exactMatch(String value)

public Filters.Filter exactMatch(String value)

Matches only cells with values that match the given value.

Parameter
Name Description
value String
Returns
Type Description
Filters.Filter

range()

public Filters.ValueRangeFilter range()

Construct a ValueRangeFilter that can create a ValueRange oriented Filter.

Returns
Type Description
Filters.ValueRangeFilter

a new ValueRangeFilter

regex(ByteString regex)

public Filters.Filter regex(ByteString regex)

Matches only cells with values that satisfy the given RE2 regex. Note that, since cell values can contain arbitrary bytes, the C escape sequence must be used if a true wildcard is desired. The . character will not match the new line character , which may be present in a binary value.

Parameter
Name Description
regex ByteString
Returns
Type Description
Filters.Filter

regex(String regex)

public Filters.Filter regex(String regex)

Matches only cells with values that satisfy the given RE2 regex. Note that, since cell values can contain arbitrary bytes, the C escape sequence must be used if a true wildcard is desired. The . character will not match the new line character , which may be present in a binary value.

Parameter
Name Description
regex String
Returns
Type Description
Filters.Filter

strip()

public Filters.Filter strip()

Replaces each cell's value with the empty string.

Returns
Type Description
Filters.Filter