@Deprecated public static enum ProfileConfig.AIM_TYPE extends java.lang.Enum<ProfileConfig.AIM_TYPE>
Example Usage: AIM_TYPE.CONTINUOUS_READ;
| Enum Constant and Description |
|---|
CONTINUOUS_READ
Deprecated.
In this mode once the trigger is pulled the user can continue scanning barcodes without releasing the trigger.
|
DEFAULT
Deprecated.
Default AIM_TYPE configured on the device
|
TRIGGER
Deprecated.
Standard Trigger Mode
|
| Modifier and Type | Method and Description |
|---|---|
static ProfileConfig.AIM_TYPE |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.AIM_TYPE[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.AIM_TYPE DEFAULT
public static final ProfileConfig.AIM_TYPE TRIGGER
public static final ProfileConfig.AIM_TYPE CONTINUOUS_READ
public static ProfileConfig.AIM_TYPE[] values()
for (ProfileConfig.AIM_TYPE c : ProfileConfig.AIM_TYPE.values()) System.out.println(c);
public static ProfileConfig.AIM_TYPE 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