@Deprecated public static enum ProfileConfig.ACTION_KEY_CHAR extends java.lang.Enum<ProfileConfig.ACTION_KEY_CHAR>
Example Usage: ACTION_KEY_CHAR.NONE;
Enum Constant and Description |
---|
CARRIAGERETURN
Deprecated.
Carriage return character code in a bar code is processed.
|
DEFAULT
Deprecated.
Default action key character configured on the device
|
LINEFEED
Deprecated.
Line feed character code in a bar code is processed.
|
NONE
Deprecated.
Action key character feature is disabled.
|
TAB
Deprecated.
Tab character code in a bar code is processed.
|
Modifier and Type | Method and Description |
---|---|
static ProfileConfig.ACTION_KEY_CHAR |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.ACTION_KEY_CHAR[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.ACTION_KEY_CHAR DEFAULT
public static final ProfileConfig.ACTION_KEY_CHAR NONE
public static final ProfileConfig.ACTION_KEY_CHAR TAB
public static final ProfileConfig.ACTION_KEY_CHAR LINEFEED
public static final ProfileConfig.ACTION_KEY_CHAR CARRIAGERETURN
public static ProfileConfig.ACTION_KEY_CHAR[] values()
for (ProfileConfig.ACTION_KEY_CHAR c : ProfileConfig.ACTION_KEY_CHAR.values()) System.out.println(c);
public static ProfileConfig.ACTION_KEY_CHAR 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