public enum Pdf417CompactionMode extends java.lang.Enum<Pdf417CompactionMode>
Pdf417 barcode's compation mode
Enum Constant and Description |
---|
AUTO
Deprecated.
This property is obsolete and will be removed in future releases. Instead, use the Pdf417EncodeMode.Auto property."
|
BINARY
Deprecated.
This property is obsolete and will be removed in future releases. Instead, use the Pdf417EncodeMode.Auto property."
|
NUMERIC
Deprecated.
This property is obsolete and will be removed in future releases. Instead, use the Pdf417EncodeMode.Auto property."
|
TEXT
Deprecated.
This property is obsolete and will be removed in future releases. Instead, use the Pdf417EncodeMode.Auto property."
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Deprecated.
|
static Pdf417CompactionMode |
valueOf(int value)
Deprecated.
|
static Pdf417CompactionMode |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Pdf417CompactionMode[] |
values()
Deprecated.
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
@Deprecated public static final Pdf417CompactionMode TEXT
text compaction
@Deprecated public static final Pdf417CompactionMode NUMERIC
numeric compaction mode
@Deprecated 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()
public static Pdf417CompactionMode valueOf(int value)