public enum AztecSymbolMode extends java.lang.Enum<AztecSymbolMode>
Specifies the Aztec symbol mode.
BarCodeBuilder b = new BarCodeBuilder(); b.setCodeText("125"); b.setEncodeType(EncodeTypes.AZTEC); b.setAztecSymbolMode(AztecSymbolMode.Rune); b.save("test.png");
Enum Constant and Description |
---|
Auto
Specifies to automatically pick up the best symbol (Compact or Full-range) for Aztec.
|
Compact
Specifies the Compact symbol for Aztec.
|
FullRange
Specifies the Full-range symbol for Aztec.
|
Rune
Specifies the Rune symbol for Aztec.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
getAztecSymbolModeName(int aztecSymbolMode)
Deprecated.
|
static int |
getAztecSymbolModeValue(java.lang.String aztecSymbolMode)
Deprecated.
|
int |
getValue() |
static AztecSymbolMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AztecSymbolMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AztecSymbolMode Auto
Specifies to automatically pick up the best symbol (Compact or Full-range) for Aztec. This is default value.
public static final AztecSymbolMode Compact
Specifies the Compact symbol for Aztec. Aztec Compact symbol permits only 1, 2, 3 or 4 layers.
public static final AztecSymbolMode FullRange
Specifies the Full-range symbol for Aztec. Aztec Full-range symbol permits from 1 to 32 layers.
public static final AztecSymbolMode Rune
Specifies the Rune symbol for Aztec. Aztec Runes are a series of small but distinct machine-readable marks. It permits only number value from 0 to 255.
public static AztecSymbolMode[] values()
for (AztecSymbolMode c : AztecSymbolMode.values()) System.out.println(c);
public static AztecSymbolMode 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()
@Deprecated public static java.lang.String getAztecSymbolModeName(int aztecSymbolMode)
@Deprecated public static int getAztecSymbolModeValue(java.lang.String aztecSymbolMode)