public enum SDPAccessInfo extends Enum<SDPAccessInfo>
| Enum Constant and Description |
|---|
APP_VERSION |
AUTH_URL |
CLIENT_ID |
JOB_NUMBER |
SECRET |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static SDPAccessInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SDPAccessInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SDPAccessInfo CLIENT_ID
public static final SDPAccessInfo APP_VERSION
public static final SDPAccessInfo JOB_NUMBER
public static final SDPAccessInfo AUTH_URL
public static final SDPAccessInfo SECRET
public static SDPAccessInfo[] values()
for (SDPAccessInfo c : SDPAccessInfo.values()) System.out.println(c);
public static SDPAccessInfo valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getValue()