public enum MAPEquipmentStatus extends Enum<MAPEquipmentStatus>
EquipmentStatus ::= ENUMERATED { whiteListed(0), -- Renamed from white-listed between ph1 and ph2. blackListed(1), -- Renamed from black-listed between ph1 and ph2. greyListed(2) -- Renamed from grey-listed between ph1 and ph2. }Present in ph1. Renamed from EquipStatus between ph1 and ph2.
Used as field type by MAPCheckIMEIResSeq
.
Used as field type by MAPCheckIMEI_Res
.
Enum Constant and Description |
---|
blackListed |
greyListed |
whiteListed |
Modifier and Type | Method and Description |
---|---|
static MAPEquipmentStatus |
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 MAPEquipmentStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPEquipmentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPEquipmentStatus whiteListed
public static final MAPEquipmentStatus blackListed
public static final MAPEquipmentStatus greyListed
public static MAPEquipmentStatus[] values()
for (MAPEquipmentStatus c : MAPEquipmentStatus.values()) System.out.println(c);
public static MAPEquipmentStatus 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 MAPEquipmentStatus fromValue(int value)
value
- integer ASN.1 encoded valuepublic int intValue()