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