public enum DirectionFieldOfView extends java.lang.Enum<DirectionFieldOfView>
ImpinjDirectionFieldOfView
Enum Constant and Description |
---|
NARROW
Specifies a narrow field for monitoring tag direction, corresponding to ring 2.
|
READER_SELECTED
Field of view is determined by the reader.
|
WIDE
Specifies a wider field for monitoring tag direction, corresponding to rings 2 and 4.
|
Modifier and Type | Method and Description |
---|---|
static DirectionFieldOfView |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DirectionFieldOfView[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectionFieldOfView READER_SELECTED
public static final DirectionFieldOfView NARROW
public static final DirectionFieldOfView WIDE
public static DirectionFieldOfView[] values()
for (DirectionFieldOfView c : DirectionFieldOfView.values()) System.out.println(c);
public static DirectionFieldOfView 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