public static enum Mutation.OperationCase extends java.lang.Enum<Mutation.OperationCase> implements Internal.EnumLite
Enum Constant and Description |
---|
DELETE |
INSERT |
OPERATION_NOT_SET |
UPDATE |
UPSERT |
Modifier and Type | Method and Description |
---|---|
static Mutation.OperationCase |
forNumber(int value) |
int |
getNumber() |
static Mutation.OperationCase |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static Mutation.OperationCase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Mutation.OperationCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mutation.OperationCase INSERT
public static final Mutation.OperationCase UPDATE
public static final Mutation.OperationCase UPSERT
public static final Mutation.OperationCase DELETE
public static final Mutation.OperationCase OPERATION_NOT_SET
public static Mutation.OperationCase[] values()
for (Mutation.OperationCase c : Mutation.OperationCase.values()) System.out.println(c);
public static Mutation.OperationCase valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null@Deprecated public static Mutation.OperationCase valueOf(int value)
forNumber(int)
instead.public static Mutation.OperationCase forNumber(int value)
public int getNumber()
getNumber
in interface Internal.EnumLite