public enum DirectionReportType extends java.lang.Enum<DirectionReportType>
DirectionReport
to be sent.
It wraps the equivalent LTK type ImpinjDirectionReportType.DirectionReport.getReportType()
,
ImpinjDirectionReportType
Enum Constant and Description |
---|
ENTRY_REPORT
This report type indicates that a tag has entered the tracked population of tags.
|
EXIT_REPORT
This report type indicates that the tag has not been read within the amount of time specified by
DirectionConfig.setTagAgeIntervalSeconds(short) and is no longer considered part of the tracked
tag population. |
UPDATE_REPORT
This report type indicates that the tag has been seen within the amount of time specified by
DirectionConfig.setTagAgeIntervalSeconds(short) . |
Modifier and Type | Method and Description |
---|---|
org.llrp.ltk.generated.custom.enumerations.ImpinjDirectionReportType |
toImpinjDirectionReportType() |
java.lang.String |
toString() |
static DirectionReportType |
valueOf(int directionReportTypeValue) |
static DirectionReportType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DirectionReportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectionReportType ENTRY_REPORT
public static final DirectionReportType UPDATE_REPORT
DirectionConfig.setTagAgeIntervalSeconds(short)
.public static final DirectionReportType EXIT_REPORT
DirectionConfig.setTagAgeIntervalSeconds(short)
and is no longer considered part of the tracked
tag population.public static DirectionReportType[] values()
for (DirectionReportType c : DirectionReportType.values()) System.out.println(c);
public static DirectionReportType 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 org.llrp.ltk.generated.custom.enumerations.ImpinjDirectionReportType toImpinjDirectionReportType()
ImpinjDirectionReportType
public static DirectionReportType valueOf(int directionReportTypeValue)
directionReportTypeValue
- int value of equivalent LTK enum ImpinjDirectionReportTypepublic java.lang.String toString()
toString
in class java.lang.Enum<DirectionReportType>