Package com.google.zxing
Enum EncodeHintType
- All Implemented Interfaces:
Serializable
,Comparable<EncodeHintType>
,java.lang.constant.Constable
public enum EncodeHintType extends Enum<EncodeHintType>
These are a set of hints that you may pass to Writers to specify their behavior.
- Author:
- dswitkin@google.com (Daniel Switkin)
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description AZTEC_LAYERS
Specifies the required number of layers for an Aztec code.CHARACTER_SET
Specifies what character encoding to use where applicable (typeString
)DATA_MATRIX_SHAPE
Specifies the matrix shape for Data Matrix (type com.google.zxing.datamatrix.encoder.SymbolShapeHint)ERROR_CORRECTION
Specifies what degree of error correction to use, for example in QR Codes.GS1_FORMAT
MARGIN
Specifies margin, in pixels, to use when generating the barcode.MAX_SIZE
Deprecated.without replacementMIN_SIZE
Deprecated.use width/height params in com.google.zxing.datamatrix.DataMatrixWriter#encode(String, BarcodeFormat, int, int)PDF417_COMPACT
PDF417_COMPACTION
Specifies what compaction mode to use for PDF417 (type com.google.zxing.pdf417.encoder.Compaction Compaction orString
value of one of its enum values).PDF417_DIMENSIONS
Specifies the minimum and maximum number of rows and columns for PDF417 (type com.google.zxing.pdf417.encoder.Dimensions Dimensions).QR_MASK_PATTERN
Specifies the QR code mask pattern to be used.QR_VERSION
Specifies the exact version of QR code to be encoded. -
Method Summary
Modifier and Type Method Description static EncodeHintType
valueOf(String name)
Returns the enum constant of this type with the specified name.static EncodeHintType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ERROR_CORRECTION
Specifies what degree of error correction to use, for example in QR Codes. Type depends on the encoder. For example for QR codes it's typeErrorCorrectionLevel
. For Aztec it is of typeInteger
, representing the minimal percentage of error correction words. For PDF417 it is of typeInteger
, valid values being 0 to 8. In all cases, it can also be aString
representation of the desired value as well. Note: an Aztec symbol should have a minimum of 25% EC words. -
CHARACTER_SET
Specifies what character encoding to use where applicable (typeString
) -
DATA_MATRIX_SHAPE
Specifies the matrix shape for Data Matrix (type com.google.zxing.datamatrix.encoder.SymbolShapeHint) -
MIN_SIZE
Deprecated.use width/height params in com.google.zxing.datamatrix.DataMatrixWriter#encode(String, BarcodeFormat, int, int)Specifies a minimum barcode size (type Dimension). Only applicable to Data Matrix now. -
MAX_SIZE
Deprecated.without replacementSpecifies a maximum barcode size (type Dimension). Only applicable to Data Matrix now. -
MARGIN
-
PDF417_COMPACT
-
PDF417_COMPACTION
Specifies what compaction mode to use for PDF417 (type com.google.zxing.pdf417.encoder.Compaction Compaction orString
value of one of its enum values). -
PDF417_DIMENSIONS
Specifies the minimum and maximum number of rows and columns for PDF417 (type com.google.zxing.pdf417.encoder.Dimensions Dimensions). -
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 normal (non-compact) Aztec code. (TypeInteger
, orString
representation of the integer value). -
QR_VERSION
-
QR_MASK_PATTERN
-
GS1_FORMAT
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-