public enum MAPTalkerPriority extends Enum<MAPTalkerPriority>
TalkerPriority ::=
ENUMERATED {
normal(0),
privileged(1),
emergency(2)
}
Added in release 7.
Used as field type by MAPForwardGroupCallSignallingArg.
Used as field type by MAPSendGroupCallEndSignalArg.
Used as field type by MAPProcessGroupCallSignallingArg.
Used as field type by MAPSendGroupCallInfoArg.
| Enum Constant and Description |
|---|
emergency |
normal |
privileged |
| Modifier and Type | Method and Description |
|---|---|
static MAPTalkerPriority |
fromValue(int value)
Returns the enumeration constant for a given ASN.1 encoded value.
|
int |
intValue()
Gets the integer ASN.1 encoded value of this enumeration constant.
|
static MAPTalkerPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPTalkerPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPTalkerPriority normal
public static final MAPTalkerPriority privileged
public static final MAPTalkerPriority emergency
public static MAPTalkerPriority[] values()
for (MAPTalkerPriority c : MAPTalkerPriority.values()) System.out.println(c);
public static MAPTalkerPriority 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 static MAPTalkerPriority fromValue(int value)
value - integer ASN.1 encoded valuepublic int intValue()