public enum Pdf417MacroTerminator extends java.lang.Enum<Pdf417MacroTerminator>
Enum Constant and Description |
---|
AUTO
The terminator will be added automatically if the number of segments is provided
and the current segment is the last one.
|
NONE
The terminator will not be added.
|
SET
The terminator will be added.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Pdf417MacroTerminator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Pdf417MacroTerminator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pdf417MacroTerminator AUTO
public static final Pdf417MacroTerminator NONE
public static final Pdf417MacroTerminator SET
public static Pdf417MacroTerminator[] values()
for (Pdf417MacroTerminator c : Pdf417MacroTerminator.values()) System.out.println(c);
public static Pdf417MacroTerminator 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()