public enum CardSearchEventSource extends java.lang.Enum<CardSearchEventSource>
Enum Constant and Description |
---|
BARCODE
Сканирован штрихкод
|
MAGNETIC_STRIPE
Прокатана магнитная полоса (4 дорожки)
|
NFC
Приложена NFC метка
|
NUMBER
Номер карты введен вручную
|
Modifier and Type | Method and Description |
---|---|
static CardSearchEventSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardSearchEventSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardSearchEventSource NUMBER
public static final CardSearchEventSource BARCODE
public static final CardSearchEventSource MAGNETIC_STRIPE
public static final CardSearchEventSource NFC
public static CardSearchEventSource[] values()
for (CardSearchEventSource c : CardSearchEventSource.values()) System.out.println(c);
public static CardSearchEventSource 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 null