public static enum ObservableReader.NotificationMode extends java.lang.Enum<ObservableReader.NotificationMode>
Enum Constant and Description |
---|
ALWAYS
All cards presented to readers are notified regardless of the result of the default
selection.
|
MATCHED_ONLY
Only cards that have been successfully selected (logical channel open) will be notified.
|
Modifier and Type | Method and Description |
---|---|
static ObservableReader.NotificationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObservableReader.NotificationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObservableReader.NotificationMode ALWAYS
public static final ObservableReader.NotificationMode MATCHED_ONLY
public static ObservableReader.NotificationMode[] values()
for (ObservableReader.NotificationMode c : ObservableReader.NotificationMode.values()) System.out.println(c);
public static ObservableReader.NotificationMode 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