Index

A B C D E F G H I K L M N O P Q R S T U V W X 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

A

ADDON_EMPTY - Static variable in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Exception ID indicating empty add-on content.
ADDON_LENGTH_INVALID - Static variable in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Exception ID indicating an invalid add-on length.
ADDON_NOT_DIGITS - Static variable in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Exception ID indicating non-digit characters in the add-on content.
ALL_QUIET_ZONES - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Map containing the minimum quiet zones for all supported 2D code types, according to their respective specifications, specified in modules.
ALPHANUMERIC - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 
appendBit(boolean) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
appendBitArray(BitArray) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
appendBits(int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
Appends the least-significant bits, from value, in order from most-significant to least-significant.
ASCII - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
AUTO - Enum constant in enum de.vwsoft.barcodelib4j.twod.pdf417.Compaction
 
AZTEC - Enum constant in enum de.vwsoft.barcodelib4j.twod.TwoDType
Code type "Aztec"
AZTEC - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.BarcodeFormat
Aztec 2D barcode format.
AZTEC_DATA_10 - Static variable in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
AZTEC_DATA_12 - Static variable in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
AZTEC_DATA_6 - Static variable in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
AZTEC_DATA_8 - Static variable in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
AZTEC_ERR_CORR_MAX - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Maximum Aztec error correction level in percent; value: 95.
AZTEC_ERR_CORR_MIN - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Minimum Aztec error correction level in percent; value: 5.
AZTEC_LAYERS - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies the required number of layers for an Aztec code.
AZTEC_PARAM - Static variable in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
AZTEC_SIZE_AUTO - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Selects the smallest possible Aztec size capable of encoding the content.
AZTEC_SIZES_COMPACT - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Array of all 4 Aztec compact sizes: 15x15, 19x19, 23x23, 27x27.
AZTEC_SIZES_NORMAL - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Array of all 32 Aztec normal sizes, ranging from 19x19 to 151x151.
AztecCode - Class in de.vwsoft.barcodelib4j.twod.aztec
Aztec 2D code representation
AztecCode() - Constructor for class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
AztecWriter - Class in de.vwsoft.barcodelib4j.twod.aztec
Renders an Aztec code as a BitMatrix.
AztecWriter() - Constructor for class de.vwsoft.barcodelib4j.twod.aztec.AztecWriter
 

B

Barcode - Class in de.vwsoft.barcodelib4j.oned
Abstract representation of a 1D barcode used as a basis for specific barcode implementations.
BarcodeException - Exception in de.vwsoft.barcodelib4j.oned
Thrown when a barcode object is assigned an invalid content that cannot be encoded by the given barcode type.
BarcodeException(int, String, String, Object...) - Constructor for exception de.vwsoft.barcodelib4j.oned.BarcodeException
Constructs a BarcodeException with the specified ID, message, and optional inserts.
BarcodeFormat - Enum in de.vwsoft.barcodelib4j.twod.zxing
Enumerates barcode formats known to this package.
BarcodeMatrix - Class in de.vwsoft.barcodelib4j.twod.pdf417
Holds all of the information for a barcode in a format where it can be easily accessible
BarcodeType - Enum in de.vwsoft.barcodelib4j.oned
Enumeration of all supported 1D barcode types sorted by type name in alphabetical order.
Big5 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
BitArray - Class in de.vwsoft.barcodelib4j.twod.zxing.common
A simple, fast array of bits, represented compactly by an array of ints internally.
BitArray() - Constructor for class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
BitArray(int) - Constructor for class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
BitmapImageIO - Class in de.vwsoft.barcodelib4j.image
Provides static utility methods for writing raster graphics with a specified resolution.
BitMatrix - Class in de.vwsoft.barcodelib4j.twod.zxing
Represents a 2D matrix of bits.
BitMatrix(int) - Constructor for class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Creates an empty square BitMatrix.
BitMatrix(int, int) - Constructor for class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Creates an empty BitMatrix.
buildSymbol() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Generates a drawable 2D symbol based on the provided properties.
BYTE - Enum constant in enum de.vwsoft.barcodelib4j.twod.pdf417.Compaction
 
BYTE - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 
ByteMatrix - Class in de.vwsoft.barcodelib4j.twod.qrcode
JAVAPORT: The original code was a 2D array of ints, but since it only ever gets assigned -1, 0, and 1, I'm going to use less memory and go with bytes.
ByteMatrix(int, int) - Constructor for class de.vwsoft.barcodelib4j.twod.qrcode.ByteMatrix
 

C

canEncode() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Checks if the specified charset can encode the given content.
canEncode(char, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.ECIEncoderSet
 
CC_BLACK - Static variable in class de.vwsoft.barcodelib4j.image.CompoundColor
Constant representing the color black in both RGB and CMYK color models.
CC_WHITE - Static variable in class de.vwsoft.barcodelib4j.image.CompoundColor
Constant representing the color white in both RGB and CMYK color models.
CHARACTER_SET - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies what character encoding to use where applicable (type String)
CharacterSetECI - Enum in de.vwsoft.barcodelib4j.twod.zxing.common
Encapsulates a Character Set ECI, according to "Extended Channel Interpretations" 5.3.1.1 of ISO 18004.
charAt(int) - Method in interface de.vwsoft.barcodelib4j.twod.zxing.common.ECIInput
Returns the byte value at the specified index.
charAt(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.MinimalECIInput
Returns the byte value at the specified index.
CHECKSUM_INVALID - Static variable in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Exception ID indicating an invalid checksum.
CHECKSUM_PLACEHOLDER - Static variable in class de.vwsoft.barcodelib4j.oned.GS1Validator
Wildcard character that can be used in AI 00 to AI 02 (SSCC/GTIN) in place of the checksum to force its automatic calculation.
chooseMode(String) - Static method in class de.vwsoft.barcodelib4j.twod.qrcode.Encoder
 
clear() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Clears all bits (sets to false).
clear() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
Clears all bits (sets to false).
clear(byte) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.ByteMatrix
 
clone() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns a copy of this object.
clone() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns a copy of this object.
clone() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
clone() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
CODABAR - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Codabar"
CODE11 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Code 11"
CODE128 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Code 128"
CODE128A - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Code 128 A"
CODE128B - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Code 128 B"
CODE128C - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Code 128 C"
CODE39 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Code 39"
CODE39E - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Code 39 Extended"
CODE93 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Code 93"
CODE93E - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Code 93 Extended"
COLORSPACE_CMYK - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Color space constant for CMYK color space.
COLORSPACE_RGB - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Color space constant for RGB color space.
Compaction - Enum in de.vwsoft.barcodelib4j.twod.pdf417
Represents possible PDF417 barcode compaction types.
compareTo(TwoDSize) - Method in class de.vwsoft.barcodelib4j.twod.TwoDSize
Compares this object with another TwoDSize object.
CompoundColor - Class in de.vwsoft.barcodelib4j.image
Stores a color independently in the RGB and CMYK color models.
CompoundColor(int, boolean) - Constructor for class de.vwsoft.barcodelib4j.image.CompoundColor
Constructs a new instance with the specified value.
CompoundColor(int, int) - Constructor for class de.vwsoft.barcodelib4j.image.CompoundColor
Constructs a new instance with the specified RGB and CMYK values.
CompoundColor(int, int, int) - Constructor for class de.vwsoft.barcodelib4j.image.CompoundColor
Constructs a new instance with the specified RGB values.
CompoundColor(int, int, int, int) - Constructor for class de.vwsoft.barcodelib4j.image.CompoundColor
Constructs a new instance with the specified CMYK values.
CompoundColor(int, int, int, int, int, int, int) - Constructor for class de.vwsoft.barcodelib4j.image.CompoundColor
Constructs a new instance with the specified RGB and CMYK values.
CompoundColor(long) - Constructor for class de.vwsoft.barcodelib4j.image.CompoundColor
Constructs a new instance with the specified RGB and CMYK values.
CompoundColor(Color) - Constructor for class de.vwsoft.barcodelib4j.image.CompoundColor
Constructs a new instance with the specified java.awt.Color.
CONTENT_EMPTY - Static variable in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Exception ID indicating empty content.
CONTENT_INVALID - Static variable in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Exception ID indicating general invalidity of the content.
CONTENT_LENGTH_INVALID - Static variable in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Exception ID indicating an invalid content length.
CONTENT_LENGTH_NOT_EVEN - Static variable in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Exception ID indicating an uneven content length.
CONTENT_NOT_ASCII - Static variable in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Exception ID indicating non-ASCII characters in the content.
CONTENT_NOT_DIGITS - Static variable in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Exception ID indicating non-digit characters in the content.
Cp1250 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
Cp1251 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
Cp1252 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
Cp1256 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
Cp437 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 

D

DATA_MATRIX - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.BarcodeFormat
Data Matrix 2D barcode format.
DATA_MATRIX_COMPACT - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies whether to use compact mode for Data Matrix (type Boolean, or "true" or "false" String value).
DATA_MATRIX_FIELD_256 - Static variable in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
DATA_MATRIX_SHAPE - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies the matrix shape for Data Matrix (type SymbolShapeHint)
DATAMATRIX - Enum constant in enum de.vwsoft.barcodelib4j.twod.TwoDType
Code type "DataMatrix"
DATAMATRIX_SHAPE_AUTO - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
When selected automatically, the smallest size with no priority for the shape is chosen.
DATAMATRIX_SHAPE_RECTANGLE - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
When selected automatically, the smallest size with a RECTANGLE shape is chosen.
DATAMATRIX_SHAPE_SQUARE - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
When selected automatically, the smallest size with a SQUARE shape is chosen.
DATAMATRIX_SIZE_AUTO - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Selects the smallest possible DataMatrix size capable of encoding the content.
DATAMATRIX_SIZE_MAX - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Largest size of DataMatrix (144x144) according to ECC200 specification; value: 30.
DATAMATRIX_SIZE_MIN - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Smallest size of DataMatrix (10x10) according to ECC200 specification; value: 1.
DATAMATRIX_SIZES - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Array containing all 30 DataMatrix sizes, ranging from 10x10 to 144x144.
DataMatrixWriter - Class in de.vwsoft.barcodelib4j.twod.datamatrix
This object renders a Data Matrix code as a BitMatrix 2D array of greyscale values.
DataMatrixWriter() - Constructor for class de.vwsoft.barcodelib4j.twod.datamatrix.DataMatrixWriter
 
de.vwsoft.barcodelib4j - module de.vwsoft.barcodelib4j
 
de.vwsoft.barcodelib4j.image - package de.vwsoft.barcodelib4j.image
 
de.vwsoft.barcodelib4j.oned - package de.vwsoft.barcodelib4j.oned
 
de.vwsoft.barcodelib4j.twod - package de.vwsoft.barcodelib4j.twod
 
de.vwsoft.barcodelib4j.twod.aztec - package de.vwsoft.barcodelib4j.twod.aztec
 
de.vwsoft.barcodelib4j.twod.datamatrix - package de.vwsoft.barcodelib4j.twod.datamatrix
 
de.vwsoft.barcodelib4j.twod.pdf417 - package de.vwsoft.barcodelib4j.twod.pdf417
 
de.vwsoft.barcodelib4j.twod.qrcode - package de.vwsoft.barcodelib4j.twod.qrcode
 
de.vwsoft.barcodelib4j.twod.zxing - package de.vwsoft.barcodelib4j.twod.zxing
 
de.vwsoft.barcodelib4j.twod.zxing.common - package de.vwsoft.barcodelib4j.twod.zxing.common
 
DEFAULT_AZTEC_LAYERS - Static variable in class de.vwsoft.barcodelib4j.twod.aztec.Encoder
 
DEFAULT_EC_PERCENT - Static variable in class de.vwsoft.barcodelib4j.twod.aztec.Encoder
 
DEFAULT_RATIO - Static variable in class de.vwsoft.barcodelib4j.oned.LineageTwoWidth
The default value is 2.5F, corresponding to a ratio of 2.5:1.
DefaultPlacement - Class in de.vwsoft.barcodelib4j.twod.datamatrix
Symbol Character Placement Program.
DefaultPlacement(CharSequence, int, int) - Constructor for class de.vwsoft.barcodelib4j.twod.datamatrix.DefaultPlacement
Main constructor
determineConsecutiveDigitCount(CharSequence, int) - Static method in class de.vwsoft.barcodelib4j.twod.datamatrix.HighLevelEncoder
Determines the number of consecutive characters that are encodable using numeric compaction.
Dimension - Class in de.vwsoft.barcodelib4j.twod.datamatrix
Simply encapsulates a width and height.
Dimension(int, int) - Constructor for class de.vwsoft.barcodelib4j.twod.datamatrix.Dimension
 
Dimensions - Class in de.vwsoft.barcodelib4j.twod.pdf417
Data object to specify the minimum and maximum number of rows and columns for a PDF417 barcode.
Dimensions(int, int, int, int) - Constructor for class de.vwsoft.barcodelib4j.twod.pdf417.Dimensions
 
draw(Graphics2D, double, double, double, double) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Draws the barcode symbol.
draw(Graphics2D, double, double, double, double) - Method in class de.vwsoft.barcodelib4j.twod.TwoDSymbol
Draws the 2D code symbol.
draw(Graphics2D, double, double, double, double, double) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Draws the barcode symbol.
draw(Graphics2D, double, double, double, double, double) - Method in class de.vwsoft.barcodelib4j.twod.TwoDSymbol
Draws the 2D code symbol.
draw(Graphics2D, double, double, double, double, double, double, double) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Draws the barcode symbol.
draw(Graphics2D, double, double, double, double, double, double, double, double) - Method in class de.vwsoft.barcodelib4j.twod.TwoDSymbol
Draws the 2D code symbol.

E

EAN128 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "GS1-128 (UCC/EAN-128)"
EAN13 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "EAN-13 (GTIN-13)"
EAN14 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "EAN-14 (GTIN-14)"
EAN8 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "EAN-8 (GTIN-8)"
ECI - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 
ECIEncoderSet - Class in de.vwsoft.barcodelib4j.twod.zxing.common
Set of CharsetEncoders for a given input string Invariants: - The list contains only encoders from CharacterSetECI (list is shorter then the list of encoders available on the platform for which ECI values are defined)
ECIEncoderSet(String, Charset, int) - Constructor for class de.vwsoft.barcodelib4j.twod.zxing.common.ECIEncoderSet
Constructs an encoder set
ECIInput - Interface in de.vwsoft.barcodelib4j.twod.zxing.common
Interface to navigate a sequence of ECIs and bytes.
encode() - Method in class de.vwsoft.barcodelib4j.twod.aztec.HighLevelEncoder
 
encode(byte[]) - Static method in class de.vwsoft.barcodelib4j.twod.aztec.Encoder
Encodes the given binary content as an Aztec symbol (without ECI code)
encode(byte[], int, int) - Static method in class de.vwsoft.barcodelib4j.twod.aztec.Encoder
Encodes the given binary content as an Aztec symbol (without ECI code)
encode(byte[], int, int, Charset) - Static method in class de.vwsoft.barcodelib4j.twod.aztec.Encoder
Encodes the given binary content as an Aztec symbol
encode(char, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.ECIEncoderSet
 
encode(int[], int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.ReedSolomonEncoder
 
encode(String) - Static method in class de.vwsoft.barcodelib4j.twod.aztec.Encoder
Encodes the given string content as an Aztec symbol (without ECI code)
encode(String, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.ECIEncoderSet
 
encode(String, int, int) - Static method in class de.vwsoft.barcodelib4j.twod.aztec.Encoder
Encodes the given string content as an Aztec symbol (without ECI code)
encode(String, int, int, Charset) - Static method in class de.vwsoft.barcodelib4j.twod.aztec.Encoder
Encodes the given string content as an Aztec symbol
encode(String, ErrorCorrectionLevel) - Static method in class de.vwsoft.barcodelib4j.twod.qrcode.Encoder
 
encode(String, ErrorCorrectionLevel, Map<EncodeHintType, ?>) - Static method in class de.vwsoft.barcodelib4j.twod.qrcode.Encoder
 
encode(String, BarcodeFormat, int, int) - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecWriter
 
encode(String, BarcodeFormat, int, int) - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.DataMatrixWriter
 
encode(String, BarcodeFormat, int, int) - Method in class de.vwsoft.barcodelib4j.twod.pdf417.PDF417Writer
 
encode(String, BarcodeFormat, int, int) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCodeWriter
 
encode(String, BarcodeFormat, int, int) - Method in interface de.vwsoft.barcodelib4j.twod.zxing.Writer
Encode a barcode using the default settings.
encode(String, BarcodeFormat, int, int, Map<EncodeHintType, ?>) - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecWriter
 
encode(String, BarcodeFormat, int, int, Map<EncodeHintType, ?>) - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.DataMatrixWriter
 
encode(String, BarcodeFormat, int, int, Map<EncodeHintType, ?>) - Method in class de.vwsoft.barcodelib4j.twod.pdf417.PDF417Writer
 
encode(String, BarcodeFormat, int, int, Map<EncodeHintType, ?>) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCodeWriter
 
encode(String, BarcodeFormat, int, int, Map<EncodeHintType, ?>) - Method in interface de.vwsoft.barcodelib4j.twod.zxing.Writer
 
encodeECC200(String, SymbolInfo) - Static method in class de.vwsoft.barcodelib4j.twod.datamatrix.ErrorCorrection
Creates the ECC200 error correction for an encoded message.
encodeHighLevel(String) - Static method in class de.vwsoft.barcodelib4j.twod.datamatrix.MinimalEncoder
Performs message encoding of a DataMatrix message
encodeHighLevel(String, SymbolShapeHint, Dimension, Dimension, boolean, boolean) - Static method in class de.vwsoft.barcodelib4j.twod.datamatrix.HighLevelEncoder
Performs message encoding of a DataMatrix message using the algorithm described in annex P of ISO/IEC 16022:2000(E).
encodeHighLevel(String, Charset, int, SymbolShapeHint) - Static method in class de.vwsoft.barcodelib4j.twod.datamatrix.MinimalEncoder
Performs message encoding of a DataMatrix message
EncodeHintType - Enum in de.vwsoft.barcodelib4j.twod.zxing
These are a set of hints that you may pass to Writers to specify their behavior.
Encoder - Class in de.vwsoft.barcodelib4j.twod.aztec
Generates Aztec 2D barcodes.
Encoder - Class in de.vwsoft.barcodelib4j.twod.qrcode
 
equals(Object) - Method in class de.vwsoft.barcodelib4j.image.CompoundColor
Determines whether another object is equal to this CompoundColor.
equals(Object) - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.Dimension
 
equals(Object) - Method in class de.vwsoft.barcodelib4j.twod.TwoDSize
Indicates whether some other object is "equal to" this one.
equals(Object) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
equals(Object) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
ERROR_CORRECTION - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies what degree of error correction to use, for example in QR Codes.
ErrorCorrection - Class in de.vwsoft.barcodelib4j.twod.datamatrix
Error Correction Code for ECC200.
ErrorCorrectionLevel - Enum in de.vwsoft.barcodelib4j.twod.qrcode
See ISO 18004:2006, 6.5.1.
EUC_KR - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 

F

flip() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Flips every bit in the matrix.
flip(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
Flips bit i.
flip(int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Flips the given bit.
FNC1 - Static variable in class de.vwsoft.barcodelib4j.oned.ImplCode128
Character constant that can be used as a marker for FNC1 in the input.
FNC1_FIRST_POSITION - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 
FNC1_SECOND_POSITION - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 
FNC2 - Static variable in class de.vwsoft.barcodelib4j.oned.ImplCode128
Character constant that can be used as a marker for FNC2 in the input.
FNC3 - Static variable in class de.vwsoft.barcodelib4j.oned.ImplCode128
Character constant that can be used as a marker for FNC3 in the input.
FNC4 - Static variable in class de.vwsoft.barcodelib4j.oned.ImplCode128
Character constant that can be used as a marker for FNC4 in the input.
forBits(int) - Static method in enum de.vwsoft.barcodelib4j.twod.qrcode.ErrorCorrectionLevel
 
forBits(int) - Static method in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 
FORCE_C40 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Forces C40 encoding for data-matrix (type Boolean, or "true" or "false") String value).
FORCE_NONE - Enum constant in enum de.vwsoft.barcodelib4j.twod.datamatrix.SymbolShapeHint
 
FORCE_RECTANGLE - Enum constant in enum de.vwsoft.barcodelib4j.twod.datamatrix.SymbolShapeHint
 
FORCE_SQUARE - Enum constant in enum de.vwsoft.barcodelib4j.twod.datamatrix.SymbolShapeHint
 
FORMAT_BMP - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Image format constant for BMP format.
FORMAT_EPS - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Image format constant for EPS format.
FORMAT_JPG - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Image format constant for JPG format.
FORMAT_PDF - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Image format constant for PDF format.
FORMAT_PNG - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Image format constant for PNG format.
FORMAT_SVG - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Image format constant for SVG format.

G

GB18030 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
generateBarcodeLogic(String, int) - Method in class de.vwsoft.barcodelib4j.twod.pdf417.PDF417
 
generateBarcodeLogic(String, int, boolean) - Method in class de.vwsoft.barcodelib4j.twod.pdf417.PDF417
 
GenericGF - Class in de.vwsoft.barcodelib4j.twod.zxing.common
This class contains utility methods for performing mathematical operations over the Galois Fields.
GenericGF(int, int, int) - Constructor for class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
Create a representation of GF(size) using the given primitive polynomial.
get(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
get(int, int) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.ByteMatrix
 
get(int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Gets the requested bit, where true means black.
getAddOn() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns the Add-On number assigned to this barcode object or null if no Add-On number is assigned.
getAddOn() - Method in class de.vwsoft.barcodelib4j.oned.LineageUPC
 
getAlignmentPatternCenters() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version
 
getArray() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.ByteMatrix
 
getAztecErrCorr() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the error correction level of the Aztec.
getAztecSize() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the size index of the Aztec symbol.
getBarcodeMatrix() - Method in class de.vwsoft.barcodelib4j.twod.pdf417.PDF417
 
getBit(int, int) - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.DefaultPlacement
 
getBitArray() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
getBits() - Method in enum de.vwsoft.barcodelib4j.twod.qrcode.ErrorCorrectionLevel
 
getBits() - Method in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 
getBottomRightOnBit() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
getCharacterCountBits(Version) - Method in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 
getCharacterSetECI(Charset) - Static method in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
getCharacterSetECIByName(String) - Static method in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
getCharset() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the character set used for encoding the content.
getCharset() - Method in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
getCharset(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.ECIEncoderSet
 
getCharsetName(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.ECIEncoderSet
 
getCMYK() - Method in class de.vwsoft.barcodelib4j.image.CompoundColor
Returns the CMYK color value.
getCodewordCount() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
getCodeWords() - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
getContent() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns the raw content as encoded in the barcode.
getContent() - Method in class de.vwsoft.barcodelib4j.oned.GS1Validator
Returns the validated raw data as it will be encoded in the barcode.
getContent() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the content encoded in the 2D code.
getCount() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version.ECB
 
getCyan() - Method in class de.vwsoft.barcodelib4j.image.CompoundColor
Returns the cyan component of the CMYK color, ranging from 0 to 100.
getDataCapacity() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
getDataCodewords() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version.ECB
 
getDataLengthForInterleavedBlock(int) - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
getDataMatrixShape() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the shape of the DataMatrix symbol.
getDataMatrixSize() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the size of the DataMatrix symbol.
getDimensionForVersion() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version
 
getECBlocks() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version.ECBlocks
 
getECBlocksForLevel(ErrorCorrectionLevel) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version
 
getECCodewordsPerBlock() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version.ECBlocks
 
getECIValue(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.ECIEncoderSet
 
getECIValue(int) - Method in interface de.vwsoft.barcodelib4j.twod.zxing.common.ECIInput
Returns the int ECI value at the specified index.
getECIValue(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.MinimalECIInput
Returns the int ECI value at the specified index.
getECLevel() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
getEnclosingRectangle() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
This is useful in detecting the enclosing rectangle of a 'pure' barcode.
getErrorCodewords() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
getErrorLengthForInterleavedBlock(int) - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
getFNC1Character() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.MinimalECIInput
 
getFont() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns the font to be used for drawing the human readable text in the barcode.
getGeneratorBase() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
getGraphics2D() - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Returns a Graphics2D object for drawing the barcode to be exported.
getHeight() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.Dimension
 
getHeight() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.ByteMatrix
 
getHeight() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
getID() - Method in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Returns the exception ID associated with this exception.
getID() - Method in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Returns the integer ID associated with this barcode type.
getID() - Method in enum de.vwsoft.barcodelib4j.twod.TwoDType
Returns the integer ID associated with this 2D code type.
getInterleavedBlockCount() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
getKey() - Method in class de.vwsoft.barcodelib4j.image.CompoundColor
Returns the key (black) component of the CMYK color, ranging from 0 to 100.
getLayers() - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
getLocalizedMessage() - Method in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Returns the localized message for this exception.
getMagenta() - Method in class de.vwsoft.barcodelib4j.image.CompoundColor
Returns the magenta component of the CMYK color, ranging from 0 to 100.
getMaskPattern() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
getMatrix() - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
getMatrix() - Method in class de.vwsoft.barcodelib4j.twod.pdf417.BarcodeMatrix
 
getMatrix() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
getMaxCols() - Method in class de.vwsoft.barcodelib4j.twod.pdf417.Dimensions
 
getMaxRows() - Method in class de.vwsoft.barcodelib4j.twod.pdf417.Dimensions
 
getMinCols() - Method in class de.vwsoft.barcodelib4j.twod.pdf417.Dimensions
 
getMinRows() - Method in class de.vwsoft.barcodelib4j.twod.pdf417.Dimensions
 
getMode() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
getNextSet(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
getNextUnset(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
getNumBlocks() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version.ECBlocks
 
getPDF417ErrCorr() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the error correction level of the PDF417.
getPDF417Size() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the size of the PDF417 symbol.
getPriorityEncoderIndex() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.ECIEncoderSet
 
getQRCodeErrCorr() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the error correction level of the QR Code.
getQRCodeVersion() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the version of the QR Code.
getQuietZoneSize() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the size of the quiet zone around the 2D code.
getRatio() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns the ratio value.
getRatio() - Method in class de.vwsoft.barcodelib4j.oned.LineageTwoWidth
 
getResolution(ImageReader) - Static method in class de.vwsoft.barcodelib4j.image.BitmapImageIO
Retreives the resolution of an image.
getRGBandCMYK() - Method in class de.vwsoft.barcodelib4j.image.CompoundColor
Returns a long value representing both the RGB and CMYK colors.
getRow(int, BitArray) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
A fast method to retrieve one row of data from the matrix as a BitArray.
getRowSize() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
getScaledMatrix(int, int) - Method in class de.vwsoft.barcodelib4j.twod.pdf417.BarcodeMatrix
 
getSize() - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
getSize() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
getSize() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
getSizeInBytes() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
getSymbolDataHeight() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
getSymbolDataWidth() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
getSymbolHeight() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
getSymbolWidth() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
getText() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns the human readable representation of the content encoded in the barcode.
getText() - Method in class de.vwsoft.barcodelib4j.oned.GS1Validator
Returns the validated data as human readable text.
getTextOffset() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns the offset for the position of the human readable text relative to the barcode symbol.
getTopLeftOnBit() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
This is useful in detecting a corner of a 'pure' barcode.
getTotalCodewords() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version
 
getTotalECCodewords() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version.ECBlocks
 
getType() - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Returns the type of the 2D code.
getTypeName() - Method in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Returns the name of this barcode type.
getTypeName() - Method in enum de.vwsoft.barcodelib4j.twod.TwoDType
Returns the name of this 2D code type.
getTypeNameShort() - Method in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Returns a shortened version of the name of this barcode type.
getValue() - Method in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
getVersion() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
getVersionForNumber(int) - Static method in class de.vwsoft.barcodelib4j.twod.qrcode.Version
 
getVersionNumber() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version
 
getWidth() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.Dimension
 
getWidth() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.ByteMatrix
 
getWidth() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
getYellow() - Method in class de.vwsoft.barcodelib4j.image.CompoundColor
Returns the yellow component of the CMYK color, ranging from 0 to 100.
GS1_DATAMATRIX - Enum constant in enum de.vwsoft.barcodelib4j.twod.TwoDType
Code type "GS1 DataMatrix"
GS1_FORMAT - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies whether the data should be encoded to the GS1 standard (type Boolean, or "true" or "false" String value).
GS1_QRCODE - Enum constant in enum de.vwsoft.barcodelib4j.twod.TwoDType
Code type "GS1 QR Code"
GS1Validator - Class in de.vwsoft.barcodelib4j.oned
Validates GS1 structured data and generates the corresponding human readable representation.
GS1Validator(String, char) - Constructor for class de.vwsoft.barcodelib4j.oned.GS1Validator
Constructs a new instance and validates the specified content.

H

H - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.ErrorCorrectionLevel
H = ~30% correction
HANZI - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
See GBT 18284-2000; "Hanzi" is a transliteration of this mode name.
hashCode() - Method in class de.vwsoft.barcodelib4j.image.CompoundColor
Returns a hash code value for this object.
hashCode() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.Dimension
 
hashCode() - Method in class de.vwsoft.barcodelib4j.twod.TwoDSize
Returns the hash code calculated from the width and height values.
hashCode() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
hashCode() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
haveNCharacters(int, int) - Method in interface de.vwsoft.barcodelib4j.twod.zxing.common.ECIInput
 
haveNCharacters(int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.MinimalECIInput
 
height - Variable in class de.vwsoft.barcodelib4j.twod.TwoDSize
The height value.
HighLevelEncoder - Class in de.vwsoft.barcodelib4j.twod.aztec
This produces nearly optimal encodings of text into the first-level of encoding used by Aztec code.
HighLevelEncoder - Class in de.vwsoft.barcodelib4j.twod.datamatrix
DataMatrix ECC 200 data encoder following the algorithm described in ISO/IEC 16022:200(E) in annex S.
HighLevelEncoder(byte[]) - Constructor for class de.vwsoft.barcodelib4j.twod.aztec.HighLevelEncoder
 
HighLevelEncoder(byte[], Charset) - Constructor for class de.vwsoft.barcodelib4j.twod.aztec.HighLevelEncoder
 

I

ImageCreator - Class in de.vwsoft.barcodelib4j.image
Exports 1D and 2D barcodes to vector (PDF, EPS, SVG) and raster (PNG, BMP, JPG) formats.
ImageCreator(double, double) - Constructor for class de.vwsoft.barcodelib4j.image.ImageCreator
Constructs a new instance with the specified dimensions for the image to be created.
ImplCodabar - Class in de.vwsoft.barcodelib4j.oned
Implementation of Codabar.
ImplCode11 - Class in de.vwsoft.barcodelib4j.oned
Implementation of Code 11.
ImplCode128 - Class in de.vwsoft.barcodelib4j.oned
Implementation of Code 128.
ImplCode128A - Class in de.vwsoft.barcodelib4j.oned
Implementation of Code 128 A.
ImplCode128B - Class in de.vwsoft.barcodelib4j.oned
Implementation of Code 128 B.
ImplCode128C - Class in de.vwsoft.barcodelib4j.oned
Implementation of Code 128 C.
ImplCode39 - Class in de.vwsoft.barcodelib4j.oned
Implementation of Code 39 (also known as Code 3 of 9).
ImplCode39E - Class in de.vwsoft.barcodelib4j.oned
Implementation of Code 39 Extended ("Full ASCII").
ImplCode93 - Class in de.vwsoft.barcodelib4j.oned
Implementation of Code 93.
ImplCode93E - Class in de.vwsoft.barcodelib4j.oned
Implementation of Code 93 Extended ("Full ASCII").
ImplEAN128 - Class in de.vwsoft.barcodelib4j.oned
Implementation of GS1-128 (also known as EAN-128 or UCC-128).
ImplEAN13 - Class in de.vwsoft.barcodelib4j.oned
Implementation of EAN-13 (also known as GTIN-13).
ImplEAN14 - Class in de.vwsoft.barcodelib4j.oned
Implementation of EAN-14 (also known as GTIN-14) using GS1-128.
ImplEAN8 - Class in de.vwsoft.barcodelib4j.oned
Implementation of EAN-8 (also known as GTIN-8).
ImplISBN13 - Class in de.vwsoft.barcodelib4j.oned
Implementation of ISBN-13 (International Standard Book Number).
ImplISMN - Class in de.vwsoft.barcodelib4j.oned
Implementation of ISMN (International Standard Music Number).
ImplITF - Class in de.vwsoft.barcodelib4j.oned
Implementation of Interleaved 2 of 5 (ITF).
ImplPZN - Class in de.vwsoft.barcodelib4j.oned
Implementation of PZN (the older 7-digit format).
ImplPZN8 - Class in de.vwsoft.barcodelib4j.oned
Implementation of PZN8.
ImplSSCC18 - Class in de.vwsoft.barcodelib4j.oned
Implementation of SSCC (Serial Shipping Container Code) using GS1-128.
ImplUPCA - Class in de.vwsoft.barcodelib4j.oned
Implementation of UPC-A.
ImplUPCE - Class in de.vwsoft.barcodelib4j.oned
Implementation of UPC-E.
isAddOnRelated() - Method in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Returns whether the exception is add-on related.
ISBN13 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "ISBN-13"
isChecksumRelated() - Method in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Returns whether the exception is checksum related.
isCompact() - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
isContentRelated() - Method in exception de.vwsoft.barcodelib4j.oned.BarcodeException
Returns whether the exception is content related.
isECI(int) - Method in interface de.vwsoft.barcodelib4j.twod.zxing.common.ECIInput
Determines if a value is an ECI
isECI(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.MinimalECIInput
Determines if a value is an ECI
isFlat(int) - Static method in class de.vwsoft.barcodelib4j.image.ImageCreator
Checks whether the specified transformation represents a flat rotation (0° or 180°).
isFNC1(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.MinimalECIInput
Determines if a value is the FNC1 character
isFontSizeAdjusted() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns whether the font size is automatically adjusted based on the size of the barcode symbol.
isGS1() - Method in enum de.vwsoft.barcodelib4j.twod.TwoDType
Convenience method that returns whether this enum constant represents a GS1 code type.
ISMN - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "ISMN"
ISO8859_1 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_10 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_11 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_13 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_14 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_15 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_16 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_2 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_3 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_4 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_5 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_6 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_7 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_8 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
ISO8859_9 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
isOptionalChecksumVisible() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns whether the optional checksum, if encoded in the barcode, is visible within the human readable text.
isRange(int, int, boolean) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
Efficient method to check if a range of bits is set, or not set.
isTextOnTop() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns whether the human readable text is placed above the barcode symbol.
isTextVisible() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns whether the human readable representation of the content encoded in the barcode is visible or whether only the barcode symbol is drawn.
isValidMaskPattern(int) - Static method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
ITF - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "Interleaved 2 of 5"

K

KANJI - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 

L

L - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.ErrorCorrectionLevel
L = ~7% correction
length() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.ECIEncoderSet
 
length() - Method in interface de.vwsoft.barcodelib4j.twod.zxing.common.ECIInput
Returns the length of this input.
length() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.MinimalECIInput
Returns the length of this input.
LineageTwoWidth - Class in de.vwsoft.barcodelib4j.oned
Abstract class used as the basis for barcode types characterized by bars with only two distinct widths.
LineageUPC - Class in de.vwsoft.barcodelib4j.oned
Abstract class that provides common functionality for UPC barcode types and their derivatives.
lookup(int) - Static method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
lookup(int, boolean, boolean) - Static method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
lookup(int, SymbolShapeHint) - Static method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
lookup(int, SymbolShapeHint, Dimension, Dimension, boolean) - Static method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 

M

M - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.ErrorCorrectionLevel
M = ~15% correction
MACRO_05_HEADER - Static variable in class de.vwsoft.barcodelib4j.twod.datamatrix.HighLevelEncoder
05 Macro header
MACRO_06_HEADER - Static variable in class de.vwsoft.barcodelib4j.twod.datamatrix.HighLevelEncoder
06 Macro header
MACRO_TRAILER - Static variable in class de.vwsoft.barcodelib4j.twod.datamatrix.HighLevelEncoder
Macro trailer
MARGIN - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies margin, in pixels, to use when generating the barcode.
matrixHeight - Variable in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
matrixWidth - Variable in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
MAX_SIZE - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Deprecated.
without replacement
MAXICODE_FIELD_64 - Static variable in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
MIN_SIZE - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Deprecated.
MinimalECIInput - Class in de.vwsoft.barcodelib4j.twod.zxing.common
Class that converts a character string into a sequence of ECIs and bytes The implementation uses the Dijkstra algorithm to produce minimal encodings
MinimalECIInput(String, Charset, int) - Constructor for class de.vwsoft.barcodelib4j.twod.zxing.common.MinimalECIInput
Constructs a minimal input
MinimalEncoder - Class in de.vwsoft.barcodelib4j.twod.datamatrix
Encoder that encodes minimally Algorithm: Uses Dijkstra to produce mathematically minimal encodings that are in some cases smaller than the results produced by the algorithm described in annex S in the specification ISO/IEC 16022:200(E).
Mode - Enum in de.vwsoft.barcodelib4j.twod.qrcode
See ISO 18004:2006, 6.4.1, Tables 2 and 3.

N

newInstance(BarcodeType) - Static method in class de.vwsoft.barcodelib4j.oned.Barcode
Creates a new instance of an implementation of this class that matches the specified barcode type.
newInstance(BarcodeType, String, boolean, boolean) - Static method in class de.vwsoft.barcodelib4j.oned.Barcode
Creates a new instance of an implementation of this class that matches the specified barcode type.
NUM_MASK_PATTERNS - Static variable in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
NUMERIC - Enum constant in enum de.vwsoft.barcodelib4j.twod.pdf417.Compaction
 
NUMERIC - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 

O

overrideSymbolSet(SymbolInfo[]) - Static method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
Overrides the symbol info set used by this class.

P

parse(boolean[][]) - Static method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Interprets a 2D array of booleans as a BitMatrix, where "true" means an "on" bit.
parse(String, String, String) - Static method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
PDF_417 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.BarcodeFormat
PDF417 format.
PDF417 - Class in de.vwsoft.barcodelib4j.twod.pdf417
Top-level class for the logic part of the PDF417 implementation.
PDF417 - Enum constant in enum de.vwsoft.barcodelib4j.twod.TwoDType
Code type "PDF 417"
PDF417() - Constructor for class de.vwsoft.barcodelib4j.twod.pdf417.PDF417
 
PDF417(boolean) - Constructor for class de.vwsoft.barcodelib4j.twod.pdf417.PDF417
 
PDF417_AUTO_ECI - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies whether to automatically insert ECIs when encoding PDF417 (type Boolean, or "true" or "false" String value).
PDF417_COLUMNS_MAX - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Maximum number of columns (code words) in a valid PDF417 symbol; value: 30.
PDF417_COLUMNS_MIN - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Minimum number of columns (code words) in a valid PDF417 symbol; value: 1.
PDF417_COMPACT - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies whether to use compact mode for PDF417 (type Boolean, or "true" or "false" String value).
PDF417_COMPACTION - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies what compaction mode to use for PDF417 (type Compaction or String value of one of its enum values).
PDF417_DIMENSIONS - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies the minimum and maximum number of rows and columns for PDF417 (type Dimensions).
PDF417_ERR_CORR_MAX - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Highest PDF417 error correction level; value: 8.
PDF417_ERR_CORR_MIN - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Lowest PDF417 error correction level; value: 0.
PDF417_ROWS_MAX - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Maximum number of rows in a valid PDF417 symbol; value: 90.
PDF417_ROWS_MIN - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Minimum number of rows in a valid PDF417 symbol; value: 3.
PDF417Writer - Class in de.vwsoft.barcodelib4j.twod.pdf417
 
PDF417Writer() - Constructor for class de.vwsoft.barcodelib4j.twod.pdf417.PDF417Writer
 
place() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.DefaultPlacement
 
PROD_SYMBOLS - Static variable in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
PZN - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "PZN"
PZN8 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "PZN8"

Q

Q - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.ErrorCorrectionLevel
Q = ~25% correction
QR_CODE - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.BarcodeFormat
QR Code 2D barcode format.
QR_CODE_FIELD_256 - Static variable in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
QR_COMPACT - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies whether to use compact mode for QR code (type Boolean, or "true" or "false" String value).
QR_MASK_PATTERN - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies the QR code mask pattern to be used.
QR_VERSION - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Specifies the exact version of QR code to be encoded.
QRCode - Class in de.vwsoft.barcodelib4j.twod.qrcode
 
QRCode() - Constructor for class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
QRCODE - Enum constant in enum de.vwsoft.barcodelib4j.twod.TwoDType
Code type "QR Code"
QRCODE_ERR_CORR_MAX - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Highest QR Code error correction level ("H"); value: 3.
QRCODE_ERR_CORR_MIN - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Lowest QR Code error correction level ("L"); value: 0.
QRCODE_SIZES - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Array of all QR Code sizes ranging from version 1 to 40, as defined in the specification.
QRCODE_VERSION_AUTO - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Selects the smallest possible QR Code version capable of encoding the content.
QRCODE_VERSION_MAX - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Maximum (largest) version of QR Code (177x177) according to specification; value: 40.
QRCODE_VERSION_MIN - Static variable in class de.vwsoft.barcodelib4j.twod.TwoDCode
Minimum (smallest) version of QR Code (21x21) according to specification; value: 1.
QRCodeWriter - Class in de.vwsoft.barcodelib4j.twod.qrcode
This object renders a QR Code as a BitMatrix 2D array of greyscale values.
QRCodeWriter() - Constructor for class de.vwsoft.barcodelib4j.twod.qrcode.QRCodeWriter
 

R

ReedSolomonEncoder - Class in de.vwsoft.barcodelib4j.twod.zxing.common
Implements Reed-Solomon encoding, as the name implies.
ReedSolomonEncoder(GenericGF) - Constructor for class de.vwsoft.barcodelib4j.twod.zxing.common.ReedSolomonEncoder
 
reverse() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
Reverses all bits in the array.
rotate(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Modifies this BitMatrix to represent the same but rotated the given degrees (0, 90, 180, 270)
rotate180() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Modifies this BitMatrix to represent the same but rotated 180 degrees
rotate90() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Modifies this BitMatrix to represent the same but rotated 90 degrees counterclockwise

S

set(int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
Sets bit i.
set(int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Sets the given bit to true.
set(int, int, boolean) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.ByteMatrix
 
set(int, int, byte) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.ByteMatrix
 
set(int, int, int) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.ByteMatrix
 
setAddOn(String) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Sets the Add-On number for this barcode object.
setAddOn(String) - Method in class de.vwsoft.barcodelib4j.oned.LineageUPC
 
setAztecErrCorr(int) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the error correction level for Aztec, specified in percent.
setAztecSize(int) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the size of the Aztec code symbol.
setBackground(CompoundColor) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Sets the background color for the exported barcode image.
setBulk(int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
Sets a block of 32 bits, starting at bit i.
setCharset(Charset) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Specifies the character set used to encode the content in the 2D code.
setCodeWords(int) - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
setCompact(boolean) - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
setCompact(boolean) - Method in class de.vwsoft.barcodelib4j.twod.pdf417.PDF417
 
setCompaction(Compaction) - Method in class de.vwsoft.barcodelib4j.twod.pdf417.PDF417
 
setContent(String) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the content to be encoded in the 2D code.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Sets the content to be encoded in the barcode, along with parameters that determine how the content is to be handled.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplCodabar
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplCode11
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplCode128
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplCode128A
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplCode128B
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplCode128C
Sets the number to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplCode39
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplCode39E
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplCode93
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplCode93E
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplEAN128
Sets the GS1 data to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplEAN13
Sets the EAN-13 number to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplEAN14
Sets the GTIN number to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplEAN8
Sets the EAN-8 number to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplISBN13
Sets the ISBN-13 number to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplISMN
Sets the ISMN number to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplITF
Sets the number to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplPZN
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplPZN8
Sets the content to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplSSCC18
Sets the SSCC number to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplUPCA
Sets the UPC-A number to be encoded in the barcode.
setContent(String, boolean, boolean) - Method in class de.vwsoft.barcodelib4j.oned.ImplUPCE
Sets the UPC-E number to be encoded in the barcode.
setCreator(String) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Sets the creator metadata for the image file to be created.
setCustomText(String) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Sets a custom text for the barcode to replace the automatically generated human readable text.
setDataMatrixShape(int) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the shape of the DataMatrix symbol.
setDataMatrixSize(int) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the size of the DataMatrix symbol.
setDimensions(int, int, int, int) - Method in class de.vwsoft.barcodelib4j.twod.pdf417.PDF417
Sets max/min row/col values
setECLevel(ErrorCorrectionLevel) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
setEncoding(Charset) - Method in class de.vwsoft.barcodelib4j.twod.pdf417.PDF417
 
setFont(Font) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Sets the font to be used for drawing the human readable text in the barcode.
setFontSizeAdjusted(boolean) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Sets whether the font size is to be automatically adjusted based on the size of the barcode symbol.
setForeground(CompoundColor) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Sets the foreground color for the exported barcode image.
setLayers(int) - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
setMaskPattern(int) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
setMatrix(ByteMatrix) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
setMatrix(BitMatrix) - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
setMode(Mode) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
setOpaque(boolean) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Sets whether the background of the exported barcode image should be opaque or transparent.
setOptionalChecksumVisible(boolean) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Sets whether the optional checksum, if encoded in the barcode, is to be visible within the human readable text.
setPDF417ErrCorr(int) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the error correction level for PDF417.
setPDF417Size(TwoDSize) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the size of the PDF417 symbol.
setQRCodeErrCorr(int) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the error correction level for QR Code.
setQRCodeVersion(int) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the version of the QR Code.
setQuietZoneSize(int) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the size of the quiet zone for the 2D code.
setRange(int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
Sets a range of bits.
setRatio(float) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Sets the ratio between the width of the wide bars and the width of the narrow bars in two-width barcode types.
setRatio(float) - Method in class de.vwsoft.barcodelib4j.oned.LineageTwoWidth
 
setRegion(int, int, int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Sets a square region of the bit matrix to true.
setRow(int, BitArray) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
setSize(int) - Method in class de.vwsoft.barcodelib4j.twod.aztec.AztecCode
 
setTextOffset(double) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Sets the offset for the position of the human readable text relative to the barcode symbol.
setTextOnTop(boolean) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Sets whether the human readable text is to be placed above the barcode symbol.
setTextVisible(boolean) - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Sets whether the human readable representation of the content encoded in the barcode is visible or whether only the barcode symbol is drawn.
setTiffResolution(int) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Sets the resolution of the embedded TIFF preview when exporting to EPS format.
setTitle(String) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Sets the title metadata for the image file to be created.
setTransform(int) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Sets the transformation for the exported barcode image.
setType(TwoDType) - Method in class de.vwsoft.barcodelib4j.twod.TwoDCode
Sets the type of the 2D code.
setTypeName(String) - Method in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Sets a custom name for this barcode type.
setVersion(Version) - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
SHIFT_JIS_CHARSET - Static variable in class de.vwsoft.barcodelib4j.twod.qrcode.Encoder
 
SJIS - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
SSCC18 - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "SSCC-18 (NVE/EAN-18)"
STRUCTURED_APPEND - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 
subSequence(int, int) - Method in interface de.vwsoft.barcodelib4j.twod.zxing.common.ECIInput
Returns a CharSequence that is a subsequence of this sequence.
subSequence(int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.MinimalECIInput
Returns a CharSequence that is a subsequence of this sequence.
supportsAddOn() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns whether the given barcode type supports the addition of supplementary barcode symbols.
supportsAutoCompletion() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns whether the given barcode type supports auto-completion.
supportsCustomText() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns whether the given barcode type supports customization of the human readable text.
supportsOptionalChecksum() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns whether the given barcode type supports an optional checksum.
supportsRatio() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns whether the given barcode type supports setting the ratio between the widths of the wide and narrow bars in the barcode symbol.
supportsTextOnTop() - Method in class de.vwsoft.barcodelib4j.oned.Barcode
Returns whether the given barcode type supports placing the human readable text above the barcode symbol.
SymbolInfo - Class in de.vwsoft.barcodelib4j.twod.datamatrix
Symbol info table for DataMatrix.
SymbolInfo(boolean, int, int, int, int, int) - Constructor for class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
SymbolShapeHint - Enum in de.vwsoft.barcodelib4j.twod.datamatrix
Enumeration for DataMatrix symbol shape hint.

T

TERMINATOR - Enum constant in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
 
TEXT - Enum constant in enum de.vwsoft.barcodelib4j.twod.pdf417.Compaction
 
toBytes(int, byte[], int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
toString() - Method in class de.vwsoft.barcodelib4j.image.CompoundColor
Returns a string representation of this CompoundColor.
toString() - Method in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Returns the name of this barcode type.
toString() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.Dimension
 
toString() - Method in class de.vwsoft.barcodelib4j.twod.datamatrix.SymbolInfo
 
toString() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.ByteMatrix
 
toString() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.QRCode
 
toString() - Method in class de.vwsoft.barcodelib4j.twod.qrcode.Version
 
toString() - Method in class de.vwsoft.barcodelib4j.twod.TwoDSize
Returns a string representation of this instance.
toString() - Method in enum de.vwsoft.barcodelib4j.twod.TwoDType
Returns the name of this 2D code type.
toString() - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
toString() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
toString() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.GenericGF
 
toString() - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.MinimalECIInput
 
toString(String, String) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
toString(String, String, String) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Deprecated.
call BitMatrix.toString(String,String) only, which uses \n line separator always
TRANSFORM_0 - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Transformation constant for rotation by 0 degrees.
TRANSFORM_0N - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Transformation constant for horizontal flip (0 degrees with mirrored image).
TRANSFORM_180 - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Transformation constant for rotation by 180 degrees.
TRANSFORM_180N - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Transformation constant for horizontal and vertical flip (180 degrees with mirrored image).
TRANSFORM_270 - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Transformation constant for rotation by 270 degrees.
TRANSFORM_270N - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Transformation constant for horizontal and vertical flip (270 degrees with mirrored image).
TRANSFORM_90 - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Transformation constant for rotation by 90 degrees.
TRANSFORM_90N - Static variable in class de.vwsoft.barcodelib4j.image.ImageCreator
Transformation constant for vertical flip (90 degrees with mirrored image).
TwoDCode - Class in de.vwsoft.barcodelib4j.twod
Main class of the package and a wrapper for the integrated ZXing classes.
TwoDCode() - Constructor for class de.vwsoft.barcodelib4j.twod.TwoDCode
Creates a new instance with default settings.
TwoDSize - Class in de.vwsoft.barcodelib4j.twod
Immutable pair of width and height.
TwoDSize(int, int) - Constructor for class de.vwsoft.barcodelib4j.twod.TwoDSize
Creates a new instance with the specified width and height.
TwoDSymbol - Class in de.vwsoft.barcodelib4j.twod
Drawable 2D code symbol.
TwoDSymbol(BitMatrix, int) - Constructor for class de.vwsoft.barcodelib4j.twod.TwoDSymbol
Constructs an instance using the binary representation (bit matrix) of a 2D code.
TwoDType - Enum in de.vwsoft.barcodelib4j.twod
Enumeration of all supported 2D code types.

U

UnicodeBigUnmarked - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 
unset(int, int) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
 
UPCA - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "UPC-A"
UPCE - Enum constant in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Barcode type "UPC-E"
UTF8 - Enum constant in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
 

V

valueOf(int) - Static method in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Returns the enum constant of this class associated with the specified integer ID.
valueOf(int) - Static method in enum de.vwsoft.barcodelib4j.twod.TwoDType
Returns the enum constant of this class associated with the specified integer ID.
valueOf(String) - Static method in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.vwsoft.barcodelib4j.twod.datamatrix.SymbolShapeHint
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.vwsoft.barcodelib4j.twod.pdf417.Compaction
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.vwsoft.barcodelib4j.twod.qrcode.ErrorCorrectionLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.vwsoft.barcodelib4j.twod.TwoDType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.vwsoft.barcodelib4j.twod.zxing.BarcodeFormat
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Returns the enum constant of this type with the specified name.
values() - Static method in enum de.vwsoft.barcodelib4j.oned.BarcodeType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.vwsoft.barcodelib4j.twod.datamatrix.SymbolShapeHint
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.vwsoft.barcodelib4j.twod.pdf417.Compaction
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.vwsoft.barcodelib4j.twod.qrcode.ErrorCorrectionLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.vwsoft.barcodelib4j.twod.qrcode.Mode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.vwsoft.barcodelib4j.twod.TwoDType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.vwsoft.barcodelib4j.twod.zxing.BarcodeFormat
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.vwsoft.barcodelib4j.twod.zxing.common.CharacterSetECI
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.vwsoft.barcodelib4j.twod.zxing.EncodeHintType
Returns an array containing the constants of this enum type, in the order they are declared.
Version - Class in de.vwsoft.barcodelib4j.twod.qrcode
See ISO 18004:2006 Annex D
Version.ECB - Class in de.vwsoft.barcodelib4j.twod.qrcode
Encapsulates the parameters for one error-correction block in one symbol version.
Version.ECBlocks - Class in de.vwsoft.barcodelib4j.twod.qrcode
Encapsulates a set of error-correction blocks in one symbol version.

W

width - Variable in class de.vwsoft.barcodelib4j.twod.TwoDSize
The width value.
write(OutputStream, int, int, int, int) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Writes the barcode image in one of the supported image formats.
writeBMP(RenderedImage, OutputStream, int, int) - Static method in class de.vwsoft.barcodelib4j.image.BitmapImageIO
Writes a rendered image in BMP format with the specified resolution.
writeBMP(OutputStream, int, int) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Writes the barcode image in BMP format.
writeEPS(OutputStream, int) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Writes the barcode image in EPS format.
writeJPG(RenderedImage, OutputStream, int, int, float) - Static method in class de.vwsoft.barcodelib4j.image.BitmapImageIO
Writes a rendered image in JPEG format with the specified resolution and quality.
writeJPG(OutputStream, int, int) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Writes the barcode image in JPG format.
writePDF(OutputStream, int) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Writes the barcode image in PDF format.
writePNG(RenderedImage, OutputStream, int, int) - Static method in class de.vwsoft.barcodelib4j.image.BitmapImageIO
Writes a rendered image in PNG format with the specified resolution.
writePNG(OutputStream, int, int) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Writes the barcode image in PNG format.
Writer - Interface in de.vwsoft.barcodelib4j.twod.zxing
The base class for all objects which encode/generate a barcode image.
WriterException - Exception in de.vwsoft.barcodelib4j.twod.zxing
A base class which covers the range of exceptions which may occur when encoding a barcode using the Writer framework.
WriterException() - Constructor for exception de.vwsoft.barcodelib4j.twod.zxing.WriterException
 
WriterException(String) - Constructor for exception de.vwsoft.barcodelib4j.twod.zxing.WriterException
 
WriterException(Throwable) - Constructor for exception de.vwsoft.barcodelib4j.twod.zxing.WriterException
 
writeSVG(OutputStream) - Method in class de.vwsoft.barcodelib4j.image.ImageCreator
Writes the barcode image in SVG format.
writeTIFF(RenderedImage, OutputStream) - Static method in class de.vwsoft.barcodelib4j.image.BitmapImageIO
Writes a rendered image in the standard TIFF format with LZW compression.

X

xor(BitMatrix) - Method in class de.vwsoft.barcodelib4j.twod.zxing.BitMatrix
Exclusive-or (XOR): Flip the bit in this BitMatrix if the corresponding mask bit is set.
xor(BitArray) - Method in class de.vwsoft.barcodelib4j.twod.zxing.common.BitArray
 
A B C D E F G H I K L M N O P Q R S T U V W X 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form