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