public enum AztecSymbolMode extends java.lang.Enum<AztecSymbolMode>
Specifies the Aztec symbol mode.
BarcodeGenerator generator = new BarcodeGenerator("125", EncodeTypes.AZTEC); generator.getParameters().getBarcode().getAztec().setAztecSymbolMode(AztecSymbolMode.RUNE); generator.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.
|
FULL_RANGE
Specifies the FULL-range symbol for Aztec.
|
RUNE
Specifies the RUNE symbol for Aztec.
|
Modifier and Type | Method and Description |
---|---|
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 FULL_RANGE
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()