public enum CodeLocation extends java.lang.Enum<CodeLocation>
Codetext location
Enum Constant and Description |
---|
ABOVE
Codetext above barcode.
|
BELOW
Codetext below barcode.
|
NONE
Hide codetext.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static CodeLocation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CodeLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeLocation BELOW
Codetext below barcode.
public static final CodeLocation ABOVE
Codetext above barcode.
public static final CodeLocation NONE
Hide codetext.
public static CodeLocation[] values()
for (CodeLocation c : CodeLocation.values()) System.out.println(c);
public static CodeLocation 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()