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