public enum IdentityType extends java.lang.Enum<IdentityType>
Enum Constant | Description |
---|---|
APPLICATION |
|
DATASTORE |
|
NONDURABLE |
|
UNSPECIFIED |
Modifier and Type | Method | Description |
---|---|---|
static IdentityType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static IdentityType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentityType UNSPECIFIED
public static final IdentityType APPLICATION
public static final IdentityType DATASTORE
public static final IdentityType NONDURABLE
public static IdentityType[] values()
for (IdentityType c : IdentityType.values()) System.out.println(c);
public static IdentityType 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