private static enum Code128Writer.CType extends java.lang.Enum<Code128Writer.CType>
Enum Constant and Description |
---|
FNC_1 |
ONE_DIGIT |
TWO_DIGITS |
UNCODABLE |
Modifier and Type | Method and Description |
---|---|
static Code128Writer.CType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Code128Writer.CType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Code128Writer.CType UNCODABLE
public static final Code128Writer.CType ONE_DIGIT
public static final Code128Writer.CType TWO_DIGITS
public static final Code128Writer.CType FNC_1
public static Code128Writer.CType[] values()
for (Code128Writer.CType c : Code128Writer.CType.values()) System.out.println(c);
public static Code128Writer.CType 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 null