@Deprecated public static enum ProfileConfig.SECURITY_LEVEL extends java.lang.Enum<ProfileConfig.SECURITY_LEVEL>
Example Usage: CHECK_DIGIT_TYPE.DEFAULT;
Enum Constant and Description |
---|
DEFAULT
Deprecated.
Default security level configured on device
|
LEVEL_0
Deprecated.
This setting allows the scanner to operate fastest, while providing sufficient security in decoding "in-spec" UPC/EAN bar codes (default).
|
LEVEL_1
Deprecated.
As bar code quality levels diminish, certain characters become prone to misdecodes before others (i.e., 1, 2, 7, 8).
|
LEVEL_2
Deprecated.
If the scanner is misdecoding poorly printed bar codes, and the misdecodes are not limited to characters 1, 2, 7, and 8, select this security level.
|
LEVEL_3
Deprecated.
If the scanner is still misdecoding, select this security level.
|
Modifier and Type | Method and Description |
---|---|
static ProfileConfig.SECURITY_LEVEL |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.SECURITY_LEVEL[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.SECURITY_LEVEL DEFAULT
public static final ProfileConfig.SECURITY_LEVEL LEVEL_0
public static final ProfileConfig.SECURITY_LEVEL LEVEL_1
public static final ProfileConfig.SECURITY_LEVEL LEVEL_2
public static final ProfileConfig.SECURITY_LEVEL LEVEL_3
public static ProfileConfig.SECURITY_LEVEL[] values()
for (ProfileConfig.SECURITY_LEVEL c : ProfileConfig.SECURITY_LEVEL.values()) System.out.println(c);
public static ProfileConfig.SECURITY_LEVEL 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