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.
|
FULL_RANGE
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 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()
@Deprecated public static java.lang.String getAztecSymbolModeName(int aztecSymbolMode)
@Deprecated public static int getAztecSymbolModeValue(java.lang.String aztecSymbolMode)