@Deprecated public static enum ProfileConfig.LINEAR_SECURITY_LEVEL extends Enum<ProfileConfig.LINEAR_SECURITY_LEVEL>
Example Usage: LINEAR_SECURITY_LEVEL.DEFAULT;
Enum Constant and Description |
---|
ALL_THRICE
Deprecated.
Three times read redundancy for all bar codes.
|
ALL_TWICE
Deprecated.
Two times read redundancy for all bar codes (default).
|
DEFAULT
Deprecated.
Default linear security level configured on device.
|
LONG_AND_SHORT
Deprecated.
Two times read redundancy for long bar codes, three times for short bar codes.
|
SHORT_OR_CODABAR
Deprecated.
Two times read redundancy if short bar code or Codabar.
|
Modifier and Type | Method and Description |
---|---|
static ProfileConfig.LINEAR_SECURITY_LEVEL |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.LINEAR_SECURITY_LEVEL[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.LINEAR_SECURITY_LEVEL DEFAULT
public static final ProfileConfig.LINEAR_SECURITY_LEVEL SHORT_OR_CODABAR
public static final ProfileConfig.LINEAR_SECURITY_LEVEL ALL_TWICE
public static final ProfileConfig.LINEAR_SECURITY_LEVEL LONG_AND_SHORT
public static final ProfileConfig.LINEAR_SECURITY_LEVEL ALL_THRICE
public static ProfileConfig.LINEAR_SECURITY_LEVEL[] values()
for (ProfileConfig.LINEAR_SECURITY_LEVEL c : ProfileConfig.LINEAR_SECURITY_LEVEL.values()) System.out.println(c);
public static ProfileConfig.LINEAR_SECURITY_LEVEL valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null