public enum ResponseCodeType extends java.lang.Enum<ResponseCodeType>
RSAProviderPackage.getResponseCodeType()| Enum Constant and Description |
|---|
APPLICATION_ERROR
The 'APPLICATION ERROR' literal object.
|
OK
The 'OK' literal object.
|
OTHER
The 'OTHER' literal object.
|
RSA_ERROR
The 'RSA ERROR' literal object.
|
TIMED_OUT
The 'TIMED OUT' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
APPLICATION_ERROR_VALUE
The 'APPLICATION ERROR' literal value.
|
static int |
OK_VALUE
The 'OK' literal value.
|
static int |
OTHER_VALUE
The 'OTHER' literal value.
|
static int |
RSA_ERROR_VALUE
The 'RSA ERROR' literal value.
|
static int |
TIMED_OUT_VALUE
The 'TIMED OUT' literal value.
|
static java.util.List<ResponseCodeType> |
VALUES
A public read-only list of all the 'Response Code Type' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static ResponseCodeType |
get(int value)
Returns the 'Response Code Type' literal with the specified integer value.
|
static ResponseCodeType |
get(java.lang.String literal)
Returns the 'Response Code Type' literal with the specified literal value.
|
static ResponseCodeType |
getByName(java.lang.String name)
Returns the 'Response Code Type' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static ResponseCodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResponseCodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseCodeType OK
OK_VALUEpublic static final ResponseCodeType TIMED_OUT
TIMED_OUT_VALUEpublic static final ResponseCodeType RSA_ERROR
RSA_ERROR_VALUEpublic static final ResponseCodeType APPLICATION_ERROR
APPLICATION_ERROR_VALUEpublic static final ResponseCodeType OTHER
OTHER_VALUEpublic static final int OK_VALUE
If the meaning of 'OK' literal object isn't clear, there really should be more of a description here...
OK,
Constant Field Valuespublic static final int TIMED_OUT_VALUE
If the meaning of 'TIMED OUT' literal object isn't clear, there really should be more of a description here...
TIMED_OUT,
Constant Field Valuespublic static final int RSA_ERROR_VALUE
If the meaning of 'RSA ERROR' literal object isn't clear, there really should be more of a description here...
RSA_ERROR,
Constant Field Valuespublic static final int APPLICATION_ERROR_VALUE
If the meaning of 'APPLICATION ERROR' literal object isn't clear, there really should be more of a description here...
APPLICATION_ERROR,
Constant Field Valuespublic static final int OTHER_VALUE
If the meaning of 'OTHER' literal object isn't clear, there really should be more of a description here...
OTHER,
Constant Field Valuespublic static final java.util.List<ResponseCodeType> VALUES
public static ResponseCodeType[] values()
for (ResponseCodeType c : ResponseCodeType.values()) System.out.println(c);
public static ResponseCodeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ResponseCodeType get(java.lang.String literal)
literal - the literal.null.public static ResponseCodeType getByName(java.lang.String name)
name - the name.null.public static ResponseCodeType get(int value)
value - the integer value.null.public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString in class java.lang.Enum<ResponseCodeType>