public enum CardReaderAction extends Enum<CardReaderAction>
Enum Constant and Description |
---|
GET_ONLY_PAN |
GET_SERIAL_NUMBER_AND_PAN
получаем номер ридера, а потом PAN
|
Modifier and Type | Method and Description |
---|---|
static CardReaderAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CardReaderAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardReaderAction GET_SERIAL_NUMBER_AND_PAN
public static final CardReaderAction GET_ONLY_PAN
public static CardReaderAction[] values()
for (CardReaderAction c : CardReaderAction.values()) System.out.println(c);
public static CardReaderAction 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 nullCopyright © 2018. All rights reserved.