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