public enum SearchMode extends java.lang.Enum<SearchMode>
RFIDReader.setSearchMode(SearchMode)
.Enum Constant and Description |
---|
DUAL
Dual inventory target search mode.
|
SINGLE
Single inventory target search mode.
|
Modifier and Type | Method and Description |
---|---|
static SearchMode |
fromValue(int value)
Create a SearchMode enum from a numeric value (0/1).
|
int |
getValue()
Get the value of the SearchMode enum.
|
static SearchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchMode DUAL
public static final SearchMode SINGLE
public static SearchMode[] values()
for (SearchMode c : SearchMode.values()) System.out.println(c);
public static SearchMode 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 nullpublic int getValue()
public static SearchMode fromValue(int value) throws InvalidParamException
value
- the int value (0/1) for the SearchModeInvalidParamException
- if value is not valid