public enum ITF14BorderType extends java.lang.Enum<ITF14BorderType>
ITF14 barcode's border type
Enum Constant and Description |
---|
BAR
Tow horizontal bars enclosing the barcode
|
BAR_OUT
Tow horizontal bars enclosing the barcode
|
FRAME
FRAME enclosing the barcode
|
FRAME_OUT
FRAME enclosing the barcode
|
NONE
NO border enclosing the barcode
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ITF14BorderType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ITF14BorderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ITF14BorderType NONE
NO border enclosing the barcode
public static final ITF14BorderType FRAME
FRAME enclosing the barcode
public static final ITF14BorderType BAR
Tow horizontal bars enclosing the barcode
public static final ITF14BorderType FRAME_OUT
FRAME enclosing the barcode
public static final ITF14BorderType BAR_OUT
Tow horizontal bars enclosing the barcode
public static ITF14BorderType[] values()
for (ITF14BorderType c : ITF14BorderType.values()) System.out.println(c);
public static ITF14BorderType 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()