public static enum SecureCard.CHANNEL_TYPE extends java.lang.Enum<SecureCard.CHANNEL_TYPE>
Enum Constant and Description |
---|
AGE_VER |
EAC_AT |
EAC_IS |
EAC_ST |
NONE |
PACE |
PIN |
USER |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Returns the name of this enum constant, as contained in the
declaration.
|
static SecureCard.CHANNEL_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecureCard.CHANNEL_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecureCard.CHANNEL_TYPE PACE
public static final SecureCard.CHANNEL_TYPE PIN
public static final SecureCard.CHANNEL_TYPE USER
public static final SecureCard.CHANNEL_TYPE AGE_VER
public static final SecureCard.CHANNEL_TYPE EAC_IS
public static final SecureCard.CHANNEL_TYPE EAC_AT
public static final SecureCard.CHANNEL_TYPE EAC_ST
public static final SecureCard.CHANNEL_TYPE NONE
public static SecureCard.CHANNEL_TYPE[] values()
for (SecureCard.CHANNEL_TYPE c : SecureCard.CHANNEL_TYPE.values()) System.out.println(c);
public static SecureCard.CHANNEL_TYPE 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 java.lang.String toString()
java.lang.Enum
toString
in class java.lang.Enum<SecureCard.CHANNEL_TYPE>