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