public static enum ObservableReader.PollingMode extends java.lang.Enum<ObservableReader.PollingMode>
| Enum Constant and Description |
|---|
REPEATING
Continue waiting for the insertion of a next card.
|
SINGLESHOT
Stop and wait for a restart signal.
|
| Modifier and Type | Method and Description |
|---|---|
static ObservableReader.PollingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObservableReader.PollingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObservableReader.PollingMode REPEATING
public static final ObservableReader.PollingMode SINGLESHOT
public static ObservableReader.PollingMode[] values()
for (ObservableReader.PollingMode c : ObservableReader.PollingMode.values()) System.out.println(c);
public static ObservableReader.PollingMode 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