@Deprecated public static enum ProfileConfig.PREAMBLE extends java.lang.Enum<ProfileConfig.PREAMBLE>
Example Usage: PREAMBLE.DEFAULT;
Enum Constant and Description |
---|
COUNTRY_AND_SYS_CHAR
Deprecated.
Both country and system code preamble
|
DEFAULT
Deprecated.
Default preamble configured on device
|
NONE
Deprecated.
No preamble
|
SYS_CHAR
Deprecated.
System character preamble
|
Modifier and Type | Method and Description |
---|---|
static ProfileConfig.PREAMBLE |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.PREAMBLE[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.PREAMBLE DEFAULT
public static final ProfileConfig.PREAMBLE NONE
public static final ProfileConfig.PREAMBLE SYS_CHAR
public static final ProfileConfig.PREAMBLE COUNTRY_AND_SYS_CHAR
public static ProfileConfig.PREAMBLE[] values()
for (ProfileConfig.PREAMBLE c : ProfileConfig.PREAMBLE.values()) System.out.println(c);
public static ProfileConfig.PREAMBLE 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