public enum EncodeHintType extends java.lang.Enum<EncodeHintType>
枚举常量和说明 |
---|
AZTEC_LAYERS
Specifies the required number of layers for an Aztec code:
a negative number (-1, -2, -3, -4) specifies a compact Aztec code
0 indicates to use the minimum number of layers (the default)
a positive number (1, 2, .. 32) specifies a normaol (non-compact) Aztec code
|
CHARACTER_SET
Specifies what character encoding to use where applicable (type
String ) |
DATA_MATRIX_SHAPE
Specifies the matrix shape for Data Matrix (type
SymbolShapeHint ) |
ERROR_CORRECTION
Specifies what degree of error correction to use, for example in QR Codes.
|
MARGIN
Specifies margin, in pixels, to use when generating the barcode.
|
MAX_SIZE
Specifies a maximum barcode size (type
Dimension ). |
MIN_SIZE
Specifies a minimum barcode size (type
Dimension ). |
PDF417_COMPACT
Specifies whether to use compact mode for PDF417 (type
Boolean ). |
PDF417_COMPACTION
Specifies what compaction mode to use for PDF417 (type
Compaction ). |
PDF417_DIMENSIONS
Specifies the minimum and maximum number of rows and columns for PDF417 (type
Dimensions ). |
限定符和类型 | 方法和说明 |
---|---|
static EncodeHintType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static EncodeHintType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final EncodeHintType ERROR_CORRECTION
ErrorCorrectionLevel
.
For Aztec it is of type Integer
, representing the minimal percentage of error correction words.
Note: an Aztec symbol should have a minimum of 25% EC words.public static final EncodeHintType CHARACTER_SET
String
)public static final EncodeHintType DATA_MATRIX_SHAPE
SymbolShapeHint
)public static final EncodeHintType MIN_SIZE
Dimension
). Only applicable to Data Matrix now.public static final EncodeHintType MAX_SIZE
Dimension
). Only applicable to Data Matrix now.public static final EncodeHintType MARGIN
Integer
).public static final EncodeHintType PDF417_COMPACT
Boolean
).public static final EncodeHintType PDF417_COMPACTION
Compaction
).public static final EncodeHintType PDF417_DIMENSIONS
Dimensions
).public static final EncodeHintType AZTEC_LAYERS
public static EncodeHintType[] values()
for (EncodeHintType c : EncodeHintType.values()) System.out.println(c);
public static EncodeHintType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值