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