public enum Pdf417CompactionMode extends java.lang.Enum<Pdf417CompactionMode>
Pdf417 barcode's compation mode
Enum Constant and Description |
---|
AUTO
auto detect compation mode
|
BINARY
binary compaction mode
|
NUMERIC
numeric compaction mode
|
TEXT
text compaction
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Pdf417CompactionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Pdf417CompactionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pdf417CompactionMode AUTO
auto detect compation mode
public static final Pdf417CompactionMode TEXT
text compaction
public static final Pdf417CompactionMode NUMERIC
numeric compaction mode
public static final Pdf417CompactionMode BINARY
binary compaction mode
public static Pdf417CompactionMode[] values()
for (Pdf417CompactionMode c : Pdf417CompactionMode.values()) System.out.println(c);
public static Pdf417CompactionMode 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()