Package com.google.bigtable.v2
Enum Mutation.MutationCase
- java.lang.Object
-
- java.lang.Enum<Mutation.MutationCase>
-
- com.google.bigtable.v2.Mutation.MutationCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<Mutation.MutationCase>
- Enclosing class:
- Mutation
public static enum Mutation.MutationCase extends Enum<Mutation.MutationCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETE_FROM_COLUMN
DELETE_FROM_FAMILY
DELETE_FROM_ROW
MUTATION_NOT_SET
SET_CELL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Mutation.MutationCase
forNumber(int value)
int
getNumber()
static Mutation.MutationCase
valueOf(int value)
Deprecated.static Mutation.MutationCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static Mutation.MutationCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SET_CELL
public static final Mutation.MutationCase SET_CELL
-
DELETE_FROM_COLUMN
public static final Mutation.MutationCase DELETE_FROM_COLUMN
-
DELETE_FROM_FAMILY
public static final Mutation.MutationCase DELETE_FROM_FAMILY
-
DELETE_FROM_ROW
public static final Mutation.MutationCase DELETE_FROM_ROW
-
MUTATION_NOT_SET
public static final Mutation.MutationCase MUTATION_NOT_SET
-
-
Method Detail
-
values
public static Mutation.MutationCase[] 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 (Mutation.MutationCase c : Mutation.MutationCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Mutation.MutationCase 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 Mutation.MutationCase 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 Mutation.MutationCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-