Uses of Class
com.google.zxing.BarcodeFormat
-
Packages that use BarcodeFormat Package Description com.google.zxing com.google.zxing.aztec com.google.zxing.client.j2se com.google.zxing.datamatrix com.google.zxing.oned com.google.zxing.pdf417 com.google.zxing.qrcode -
-
Uses of BarcodeFormat in com.google.zxing
Fields in com.google.zxing declared as BarcodeFormat Modifier and Type Field Description private BarcodeFormat
Result. format
Methods in com.google.zxing that return BarcodeFormat Modifier and Type Method Description BarcodeFormat
Result. getBarcodeFormat()
static BarcodeFormat
BarcodeFormat. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BarcodeFormat[]
BarcodeFormat. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.zxing with parameters of type BarcodeFormat Modifier and Type Method Description BitMatrix
MultiFormatWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height)
BitMatrix
MultiFormatWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height, java.util.Map<EncodeHintType,?> hints)
BitMatrix
Writer. encode(java.lang.String contents, BarcodeFormat format, int width, int height)
Encode a barcode using the default settings.BitMatrix
Writer. encode(java.lang.String contents, BarcodeFormat format, int width, int height, java.util.Map<EncodeHintType,?> hints)
Constructors in com.google.zxing with parameters of type BarcodeFormat Constructor Description Result(java.lang.String text, byte[] rawBytes, int numBits, ResultPoint[] resultPoints, BarcodeFormat format, long timestamp)
Result(java.lang.String text, byte[] rawBytes, ResultPoint[] resultPoints, BarcodeFormat format)
Result(java.lang.String text, byte[] rawBytes, ResultPoint[] resultPoints, BarcodeFormat format, long timestamp)
-
Uses of BarcodeFormat in com.google.zxing.aztec
Methods in com.google.zxing.aztec with parameters of type BarcodeFormat Modifier and Type Method Description BitMatrix
AztecWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height)
private static BitMatrix
AztecWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height, java.nio.charset.Charset charset, int eccPercent, int layers)
BitMatrix
AztecWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height, java.util.Map<EncodeHintType,?> hints)
-
Uses of BarcodeFormat in com.google.zxing.client.j2se
Fields in com.google.zxing.client.j2se declared as BarcodeFormat Modifier and Type Field Description (package private) BarcodeFormat
EncoderConfig. barcodeFormat
Fields in com.google.zxing.client.j2se with type parameters of type BarcodeFormat Modifier and Type Field Description (package private) java.util.List<BarcodeFormat>
DecoderConfig. possibleFormats
-
Uses of BarcodeFormat in com.google.zxing.datamatrix
Methods in com.google.zxing.datamatrix with parameters of type BarcodeFormat Modifier and Type Method Description BitMatrix
DataMatrixWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height)
BitMatrix
DataMatrixWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height, java.util.Map<EncodeHintType,?> hints)
-
Uses of BarcodeFormat in com.google.zxing.oned
Methods in com.google.zxing.oned that return BarcodeFormat Modifier and Type Method Description (package private) BarcodeFormat
EAN13Reader. getBarcodeFormat()
(package private) BarcodeFormat
EAN8Reader. getBarcodeFormat()
(package private) BarcodeFormat
UPCAReader. getBarcodeFormat()
(package private) abstract BarcodeFormat
UPCEANReader. getBarcodeFormat()
Get the format of this decoder.(package private) BarcodeFormat
UPCEReader. getBarcodeFormat()
Methods in com.google.zxing.oned that return types with arguments of type BarcodeFormat Modifier and Type Method Description protected java.util.Collection<BarcodeFormat>
CodaBarWriter. getSupportedWriteFormats()
protected java.util.Collection<BarcodeFormat>
Code128Writer. getSupportedWriteFormats()
protected java.util.Collection<BarcodeFormat>
Code39Writer. getSupportedWriteFormats()
protected java.util.Collection<BarcodeFormat>
Code93Writer. getSupportedWriteFormats()
protected java.util.Collection<BarcodeFormat>
EAN13Writer. getSupportedWriteFormats()
protected java.util.Collection<BarcodeFormat>
EAN8Writer. getSupportedWriteFormats()
protected java.util.Collection<BarcodeFormat>
ITFWriter. getSupportedWriteFormats()
protected java.util.Collection<BarcodeFormat>
OneDimensionalCodeWriter. getSupportedWriteFormats()
protected java.util.Collection<BarcodeFormat>
UPCEWriter. getSupportedWriteFormats()
Methods in com.google.zxing.oned with parameters of type BarcodeFormat Modifier and Type Method Description BitMatrix
OneDimensionalCodeWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height)
BitMatrix
OneDimensionalCodeWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height, java.util.Map<EncodeHintType,?> hints)
Encode the contents following specified format.BitMatrix
UPCAWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height)
BitMatrix
UPCAWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height, java.util.Map<EncodeHintType,?> hints)
-
Uses of BarcodeFormat in com.google.zxing.pdf417
Methods in com.google.zxing.pdf417 with parameters of type BarcodeFormat Modifier and Type Method Description BitMatrix
PDF417Writer. encode(java.lang.String contents, BarcodeFormat format, int width, int height)
BitMatrix
PDF417Writer. encode(java.lang.String contents, BarcodeFormat format, int width, int height, java.util.Map<EncodeHintType,?> hints)
-
Uses of BarcodeFormat in com.google.zxing.qrcode
Methods in com.google.zxing.qrcode with parameters of type BarcodeFormat Modifier and Type Method Description BitMatrix
QRCodeWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height)
BitMatrix
QRCodeWriter. encode(java.lang.String contents, BarcodeFormat format, int width, int height, java.util.Map<EncodeHintType,?> hints)
-