public enum ScanOption extends java.lang.Enum<ScanOption>
Device.requestScan(ScanOption...)).| Enum Constant and Description | 
|---|
| MONO_AXISIf set, only use the current axis to perform the scan. | 
| NO_KRIf set, do not use the new (default) algorithm with the "Digit Return" option. | 
| NO_RECORD(Remote devices only) If set, the inventory will not be recorded in database used by the device (nor available 
 through the "get inventory" methods). | 
| NO_UNLOCKBlocked tags (tags block automatically after few minutes) are not unlocked before performing the scan. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ScanOption | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ScanOption[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ScanOption MONO_AXIS
public static final ScanOption NO_UNLOCK
public static final ScanOption NO_KR
public static final ScanOption NO_RECORD
Please mind that in case of "discontinuous" scans with this option, the inventories history may looks irrelevant.
public static ScanOption[] values()
for (ScanOption c : ScanOption.values()) System.out.println(c);
public static ScanOption 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