public final class AztecSymbolMode
extends java.lang.Object
Specifies the Aztec symbol mode.
BarCodeBuilder b = new BarCodeBuilder(); b.setCodeText("125"); b.setSymbologyType(Symbology.Aztec); b.setAztecSymbolMode(AztecSymbolMode.Rune); b.save("test.png");
Modifier and Type | Field and Description |
---|---|
static int |
Auto
Specifies to automatically pick up the best symbol (Compact or Full-range) for Aztec.
|
static int |
Compact
Specifies the Compact symbol for Aztec.
|
static int |
FullRange
Specifies the Full-range symbol for Aztec.
|
static int |
Rune
Specifies the Rune symbol for Aztec.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
getAztecSymbolModeName(int aztecSymbolMode) |
static int |
getAztecSymbolModeValue(java.lang.String aztecSymbolMode) |
public static final int Auto
Specifies to automatically pick up the best symbol (Compact or Full-range) for Aztec. This is default value.
public static final int Compact
Specifies the Compact symbol for Aztec. Aztec Compact symbol permits only 1, 2, 3 or 4 layers.
public static final int FullRange
Specifies the Full-range symbol for Aztec. Aztec Full-range symbol permits from 1 to 32 layers.
public static final int 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.