public enum CardEntryMethod extends Enum<CardEntryMethod>
Enum Constant and Description |
---|
CHIP
Constant referring to Chip Card reader
|
MAG_STRIPE
Constant referring to Magnetic Stripe Card reader
|
MANUAL
Constant referring to manually entering card information
|
NFC
Constant referring to Contactless NFC Card reader
|
Modifier and Type | Method and Description |
---|---|
static Set<CardEntryMethod> |
All() |
static Set<CardEntryMethod> |
CardReaders() |
String |
getValue() |
static Set<CardEntryMethod> |
Manual() |
static CardEntryMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CardEntryMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardEntryMethod MAG_STRIPE
public static final CardEntryMethod CHIP
public static final CardEntryMethod NFC
public static final CardEntryMethod MANUAL
public static CardEntryMethod[] values()
for (CardEntryMethod c : CardEntryMethod.values()) System.out.println(c);
public static CardEntryMethod 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 String getValue()
public static Set<CardEntryMethod> CardReaders()
public static Set<CardEntryMethod> Manual()
public static Set<CardEntryMethod> All()