public enum SearchMode extends java.lang.Enum<SearchMode>
Enum Constant and Description |
---|
DualTarget
The reader alternates between A to B and B to A inventory.
|
ReaderSelected
The reader selects the best inventory search mode for the chosen session
|
SingleTarget
The reader performs repeated inventory from A to B.
|
SingleTargetReset
The reader inventories tags that are in inventory state B and resets the
inventory flag to state A so that whey will respond to reader queries.
|
TagFocus
The reader uses Impinj Tag Focus to provide a single target inventory
in session 1 with a very short persistence time.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static SearchMode |
valueOf(int searchModeValue) |
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 ReaderSelected
public static final SearchMode SingleTarget
public static final SearchMode DualTarget
public static final SearchMode TagFocus
public static final SearchMode SingleTargetReset
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 static SearchMode valueOf(int searchModeValue)
searchModeValue
- integer valuepublic int getValue()