public enum HumanReadablePlacement extends Enum<HumanReadablePlacement>
Enum Constant and Description |
---|
BOTTOM
The human-readable portion is placed at the bottom of the barcode.
|
NONE
The human-readable portion is suppressed.
|
TOP
The human-readable portion is placed at the top of the barcode.
|
Modifier and Type | Method and Description |
---|---|
static HumanReadablePlacement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HumanReadablePlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HumanReadablePlacement BOTTOM
public static final HumanReadablePlacement NONE
public static final HumanReadablePlacement TOP
public static HumanReadablePlacement[] values()
for (HumanReadablePlacement c : HumanReadablePlacement.values()) System.out.println(c);
public static HumanReadablePlacement valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null
© 2016 ZIH Corp. All Rights Reserved.