Package com.google.bigtable.v2
Enum RowFilter.FilterCase
- java.lang.Object
-
- java.lang.Enum<RowFilter.FilterCase>
-
- com.google.bigtable.v2.RowFilter.FilterCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<RowFilter.FilterCase>
- Enclosing class:
- RowFilter
public static enum RowFilter.FilterCase extends Enum<RowFilter.FilterCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static RowFilter.FilterCase
forNumber(int value)
int
getNumber()
static RowFilter.FilterCase
valueOf(int value)
Deprecated.static RowFilter.FilterCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static RowFilter.FilterCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHAIN
public static final RowFilter.FilterCase CHAIN
-
INTERLEAVE
public static final RowFilter.FilterCase INTERLEAVE
-
CONDITION
public static final RowFilter.FilterCase CONDITION
-
SINK
public static final RowFilter.FilterCase SINK
-
PASS_ALL_FILTER
public static final RowFilter.FilterCase PASS_ALL_FILTER
-
BLOCK_ALL_FILTER
public static final RowFilter.FilterCase BLOCK_ALL_FILTER
-
ROW_KEY_REGEX_FILTER
public static final RowFilter.FilterCase ROW_KEY_REGEX_FILTER
-
ROW_SAMPLE_FILTER
public static final RowFilter.FilterCase ROW_SAMPLE_FILTER
-
FAMILY_NAME_REGEX_FILTER
public static final RowFilter.FilterCase FAMILY_NAME_REGEX_FILTER
-
COLUMN_QUALIFIER_REGEX_FILTER
public static final RowFilter.FilterCase COLUMN_QUALIFIER_REGEX_FILTER
-
COLUMN_RANGE_FILTER
public static final RowFilter.FilterCase COLUMN_RANGE_FILTER
-
TIMESTAMP_RANGE_FILTER
public static final RowFilter.FilterCase TIMESTAMP_RANGE_FILTER
-
VALUE_REGEX_FILTER
public static final RowFilter.FilterCase VALUE_REGEX_FILTER
-
VALUE_RANGE_FILTER
public static final RowFilter.FilterCase VALUE_RANGE_FILTER
-
CELLS_PER_ROW_OFFSET_FILTER
public static final RowFilter.FilterCase CELLS_PER_ROW_OFFSET_FILTER
-
CELLS_PER_ROW_LIMIT_FILTER
public static final RowFilter.FilterCase CELLS_PER_ROW_LIMIT_FILTER
-
CELLS_PER_COLUMN_LIMIT_FILTER
public static final RowFilter.FilterCase CELLS_PER_COLUMN_LIMIT_FILTER
-
STRIP_VALUE_TRANSFORMER
public static final RowFilter.FilterCase STRIP_VALUE_TRANSFORMER
-
APPLY_LABEL_TRANSFORMER
public static final RowFilter.FilterCase APPLY_LABEL_TRANSFORMER
-
FILTER_NOT_SET
public static final RowFilter.FilterCase FILTER_NOT_SET
-
-
Method Detail
-
values
public static RowFilter.FilterCase[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RowFilter.FilterCase c : RowFilter.FilterCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RowFilter.FilterCase valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
valueOf
@Deprecated public static RowFilter.FilterCase valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
public static RowFilter.FilterCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-