public enum I2of5SecurityLevel extends java.lang.Enum<I2of5SecurityLevel> implements IEnumType
Enum Constant and Description |
---|
Level0
This setting allows the decoder to operate in its most aggressive state, while
providing sufficient security in decoding the most in-spec bar codes.
|
Level1
A bar code must be successfully read twice, and satisfy certain safety requirements before being decoded.
|
Level2
Select this option with higher safety requirements to the bar codes if Security
Level 1 fails to eliminate misdecodes.
|
Level3
If you selected Security Level 2, and misdecodes still occur, select this security level.
|
Modifier and Type | Method and Description |
---|---|
int |
getCode() |
java.lang.String |
toString() |
static I2of5SecurityLevel |
valueOf(int code) |
static I2of5SecurityLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static I2of5SecurityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final I2of5SecurityLevel Level0
public static final I2of5SecurityLevel Level1
public static final I2of5SecurityLevel Level2
public static final I2of5SecurityLevel Level3
public static I2of5SecurityLevel[] values()
for (I2of5SecurityLevel c : I2of5SecurityLevel.values()) System.out.println(c);
public static I2of5SecurityLevel 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 nullpublic java.lang.String toString()
toString
in interface IEnumType
toString
in class java.lang.Enum<I2of5SecurityLevel>
public static I2of5SecurityLevel valueOf(int code)