public enum CardCSCResultCode extends java.lang.Enum<CardCSCResultCode>
| Enum Constant and Description |
|---|
CORRECT_CRYPTOGRAM |
COULD_NOT_PREFORM |
CRYPTOGRAM_MISSING |
CRYPTOGRAM_NOT_PROCESSED |
INCORRECT_CRYPTOGRAM |
| Modifier and Type | Method and Description |
|---|---|
static CardCSCResultCode |
fromCode(java.lang.String code) |
java.lang.String |
getCode() |
static CardCSCResultCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardCSCResultCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardCSCResultCode INCORRECT_CRYPTOGRAM
public static final CardCSCResultCode CORRECT_CRYPTOGRAM
public static final CardCSCResultCode CRYPTOGRAM_NOT_PROCESSED
public static final CardCSCResultCode CRYPTOGRAM_MISSING
public static final CardCSCResultCode COULD_NOT_PREFORM
public static CardCSCResultCode[] values()
for (CardCSCResultCode c : CardCSCResultCode.values()) System.out.println(c);
public static CardCSCResultCode 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 CardCSCResultCode fromCode(java.lang.String code) throws UnknownStatusException
UnknownStatusExceptionpublic java.lang.String getCode()