@Deprecated public static enum ProfileConfig.CODE_ID_TYPE extends java.lang.Enum<ProfileConfig.CODE_ID_TYPE>
Example Usage: CODE_ID_TYPE.DEFAULT;
| Enum Constant and Description |
|---|
AIM
Deprecated.
A standards based three character prefix.
|
DEFAULT
Deprecated.
Default prefix configured on device
|
NONE
Deprecated.
No prefix.
|
SYMBOL
Deprecated.
A Symbol defined single character prefix.
|
| Modifier and Type | Method and Description |
|---|---|
static ProfileConfig.CODE_ID_TYPE |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.CODE_ID_TYPE[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.CODE_ID_TYPE DEFAULT
public static final ProfileConfig.CODE_ID_TYPE NONE
public static final ProfileConfig.CODE_ID_TYPE AIM
public static final ProfileConfig.CODE_ID_TYPE SYMBOL
public static ProfileConfig.CODE_ID_TYPE[] values()
for (ProfileConfig.CODE_ID_TYPE c : ProfileConfig.CODE_ID_TYPE.values()) System.out.println(c);
public static ProfileConfig.CODE_ID_TYPE 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