public enum Code128CharacterSet extends Enum<Code128CharacterSet>
Enum Constant and Description |
---|
A
Utilize Character Set A which only supports ASCII values from 0 to 95.
|
ALL
Automatically switch between code sets to encode the ASCII values.
|
B
Utilize Char Set B(bitmap) which only supports ASCII values from 32 to 127
|
C
Utilize Char Set C which only supports pairs of digits.
|
Modifier and Type | Method and Description |
---|---|
static Code128CharacterSet |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Code128CharacterSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Code128CharacterSet A
public static final Code128CharacterSet B
public static final Code128CharacterSet C
public static final Code128CharacterSet ALL
public static Code128CharacterSet[] values()
for (Code128CharacterSet c : Code128CharacterSet.values()) System.out.println(c);
public static Code128CharacterSet 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.