public enum MAPResourceUnavailableReason extends Enum<MAPResourceUnavailableReason>
ResourceUnavailableReason ::=
ENUMERATED {
shortTermResourceLimitation(0),
longTermResourceLimitation(1)
}
Added in ph2.
Used as field type by MAPMAP_UserAbortChoice.
| Enum Constant and Description |
|---|
longTermResourceLimitation |
shortTermResourceLimitation |
| Modifier and Type | Method and Description |
|---|---|
static MAPResourceUnavailableReason |
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 MAPResourceUnavailableReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPResourceUnavailableReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPResourceUnavailableReason shortTermResourceLimitation
public static final MAPResourceUnavailableReason longTermResourceLimitation
public static MAPResourceUnavailableReason[] values()
for (MAPResourceUnavailableReason c : MAPResourceUnavailableReason.values()) System.out.println(c);
public static MAPResourceUnavailableReason 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 MAPResourceUnavailableReason fromValue(int value)
value - integer ASN.1 encoded valuepublic int intValue()