public enum ReportMode extends java.lang.Enum<ReportMode>
Enum Constant and Description |
---|
BatchAfterStop
In this mode, the reader will collect and coalesce tag reports and send
them the the current operation completes and the reader stops.
|
Individual
In this mode, the reader will send each tag observation as an individual
report.
|
WaitForQuery
In this mode, the reader will hold and coalesce reports for the same tag.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ReportMode |
valueOf(int reportModeValue) |
static ReportMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportMode WaitForQuery
ImpinjReader.queryTags()
public static final ReportMode Individual
public static final ReportMode BatchAfterStop
public static ReportMode[] values()
for (ReportMode c : ReportMode.values()) System.out.println(c);
public static ReportMode 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 ReportMode valueOf(int reportModeValue)
reportModeValue
- an integer valuepublic int getValue()