public enum Pdf417ErrorLevel extends java.lang.Enum<Pdf417ErrorLevel>
pdf417 barcode's error correction level, from level 0 to level 9, level 0 means no error correction, level 9 means best error correction
Enum Constant and Description |
---|
LEVEL_0
level = 0.
|
LEVEL_1
level = 1.
|
LEVEL_2
level = 2.
|
LEVEL_3
level = 3.
|
LEVEL_4
level = 4.
|
LEVEL_5
level = 5.
|
LEVEL_6
level = 6.
|
LEVEL_7
level = 7.
|
LEVEL_8
level = 8.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Pdf417ErrorLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Pdf417ErrorLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pdf417ErrorLevel LEVEL_0
level = 0.
public static final Pdf417ErrorLevel LEVEL_1
level = 1.
public static final Pdf417ErrorLevel LEVEL_2
level = 2.
public static final Pdf417ErrorLevel LEVEL_3
level = 3.
public static final Pdf417ErrorLevel LEVEL_4
level = 4.
public static final Pdf417ErrorLevel LEVEL_5
level = 5.
public static final Pdf417ErrorLevel LEVEL_6
level = 6.
public static final Pdf417ErrorLevel LEVEL_7
level = 7.
public static final Pdf417ErrorLevel LEVEL_8
level = 8.
public static Pdf417ErrorLevel[] values()
for (Pdf417ErrorLevel c : Pdf417ErrorLevel.values()) System.out.println(c);
public static Pdf417ErrorLevel 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 int getValue()