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