public enum SmartCardReaderStatus extends java.lang.Enum<SmartCardReaderStatus>
Enum Constant and Description |
---|
CARD_DETECTED
Card inside reader detected, ready to receive transmissions.
|
IDLE
No readers detected.
|
READER_DETECTED
Supported reader detected and connected.
|
Modifier and Type | Method and Description |
---|---|
static SmartCardReaderStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SmartCardReaderStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmartCardReaderStatus IDLE
public static final SmartCardReaderStatus READER_DETECTED
public static final SmartCardReaderStatus CARD_DETECTED
public static SmartCardReaderStatus[] values()
for (SmartCardReaderStatus c : SmartCardReaderStatus.values()) System.out.println(c);
public static SmartCardReaderStatus 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