| Modifier and Type | Method and Description |
|---|---|
static Barcode |
BarcodeFactory.create2of7(String data)
Creates a 2 of 7 (Codabar) linear barcode.
|
static Barcode |
BarcodeFactory.create3of9(String data,
boolean requiresChecksum)
Creates a Code 3 of 9 (Code 39) linear barcode.
|
static Barcode |
BarcodeFactory.createBookland(String isbn)
Creates a Bookland barcode, which is based on the EAN 13 Symbology.
|
static Barcode |
BarcodeFactory.createCodabar(String data)
Creates a Codabar linear barcode.
|
static Barcode |
BarcodeFactory.createCode128(String data)
Creates a Code 128 barcode that dynamically switches between character sets
to give the smallest possible encoding.
|
static Barcode |
BarcodeFactory.createCode128A(String data)
Creates a Code 128 barcode using the A character set.
|
static Barcode |
BarcodeFactory.createCode128B(String data)
Creates a Code 128 barcode using the B character set.
|
static Barcode |
BarcodeFactory.createCode128C(String data)
Creates a Code 128 barcode using the C character set.
|
static Barcode |
BarcodeFactory.createCode39(String data,
boolean requiresChecksum)
Creates a Code 39 linear barcode.
|
static Barcode |
BarcodeFactory.createEAN128(String data)
Creates a EAN 128 barcode.
|
static Barcode |
BarcodeFactory.createEAN13(String data)
Creates a barcode based on the EAN 13 Symbology.
|
static Barcode |
BarcodeFactory.createGlobalTradeItemNumber(String data)
Creates a Global Trade Item Number (GTIN) based on the UCC/EAN 128 symbology.
|
static Barcode |
BarcodeFactory.createInt2of5(String data)
Creates a barcode based on the Interleave 2 of 5 Symbology.
|
static Barcode |
BarcodeFactory.createInt2of5(String data,
boolean checkDigit)
Creates a barcode based on the Interleave 2 of 5 Symbology.
|
static Barcode |
BarcodeFactory.createMonarch(String data)
Creates a Monarch (Codabar) linear barcode.
|
static Barcode |
BarcodeFactory.createNW7(String data)
Creates a NW-7 (Codabar) linear barcode.
|
static Barcode |
BarcodeFactory.createPDF417(String data)
Creates a PDF417 two dimensional barcode.
|
static Barcode |
BarcodeFactory.createPostNet(String data)
Creates a PostNet linear barcode.
|
static Barcode |
BarcodeFactory.createRandomWeightUPCA(String data)
Creates a barcode based on the UPC-A Symbology signifying a random weight.
|
static Barcode |
BarcodeFactory.createSCC14ShippingCode(String data)
Creates an SCC-14 shipping code number based on the UCC/EAN 128 symbology.
|
static Barcode |
BarcodeFactory.createShipmentIdentificationNumber(String data)
Creates a shipment identification number based on the UCC/EAN 128 symbology.
|
static Barcode |
BarcodeFactory.createSSCC18(String data)
Creates an SSCC-18 number based on the UCC/EAN 128 symbology.
|
static Barcode |
BarcodeFactory.createStd2of5(String data)
Creates a barcode based on the Standard 2 of 5 Symbology.
|
static Barcode |
BarcodeFactory.createStd2of5(String data,
boolean checkDigit)
Creates a barcode based on the Standard 2 of 5 Symbology.
|
static Barcode |
BarcodeFactory.createUCC128(String applicationIdentifier,
String data)
Creates a UCC 128 barcode.
|
static Barcode |
BarcodeFactory.createUPCA(String data)
Creates a barcode based on the UPC-A Symbology.
|
static Barcode |
BarcodeFactory.createUSD3(String data,
boolean requiresChecksum)
Creates a USD3 (Code 39) linear barcode.
|
static Barcode |
BarcodeFactory.createUSD4(String data)
Creates a USD-4 (Codabar) linear barcode.
|
static Barcode |
BarcodeFactory.createUSPS(String data)
Creates a US Postal Service barcode based on the UCC/EAN 128 symbology.
|
static Barcode |
BarcodeFactory.parseEAN128(String encoded_data)
Create an EAN128 barcode with multiple application identifiers (AI's).
|
| Constructor and Description |
|---|
Barcode(String data) |
| Constructor and Description |
|---|
LinearBarcode(String data) |
| Constructor and Description |
|---|
CodabarBarcode(String data)
Constructs a new Codabar barcode with thte specified data.
|
| Constructor and Description |
|---|
Code128Barcode(String data)
Create a new Code 128 barcode using character set B.
|
Code128Barcode(String data,
int mode)
Creates a new Coded 128 barcode with the specified data and the specified
character set.
|
| Constructor and Description |
|---|
Code39Barcode(String data,
boolean requiresChecksum)
Constructs a basic mode Code 39 barcode with the specified data and an optional
checksum.
|
Code39Barcode(String data,
boolean requiresChecksum,
boolean extendedMode)
Constructs an extended mode Code 39 barcode with the specified data and an optional
checksum.
|
| Constructor and Description |
|---|
BooklandBarcode(String isbn) |
EAN13Barcode(String data)
Constructs a basic mode EAN13 barcode with the specified data and an optional
checksum.
|
UCCEAN128Barcode(String encodedData)
Creates a new UCC/EAN 128 barcode with the given application identifier and
data to encode.
|
UCCEAN128Barcode(String data,
boolean includeCheckDigit)
Creates a new UCC/EAN 128 barcode based on the provided data, with an
optional Modulo 10 check digit.
|
UCCEAN128Barcode(String applicationIdentifier,
String data)
Creates a new UCC/EAN 128 barcode with the given application identifier and
data to encode.
|
UCCEAN128Barcode(String applicationIdentifier,
String data,
boolean includeCheckDigit)
Creates a new UCC/EAN 128 barcode with the given application identifier and
data to encode.
|
| Constructor and Description |
|---|
PostNetBarcode(String zipcode) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
Int2of5Barcode.validateData() |
protected void |
Std2of5Barcode.validateData() |
| Constructor and Description |
|---|
Int2of5Barcode(String data)
Constructs a new Interleave 2 of 5 barcode with the specified data.
|
Int2of5Barcode(String data,
boolean checkDigit)
Constructs a new Interleave 2 of 5 barcode with thte specified data.
|
Std2of5Barcode(String data)
Constructs a new Standard 2 of 5 barcode with the specified data.
|
Std2of5Barcode(String data,
boolean checkDigit)
Constructs a new Standard 2 of 5 barcode with thte specified data.
|
| Constructor and Description |
|---|
UPCABarcode(String data)
Constructs a basic mode UPC-A barcode with the specified data and an optional
checksum.
|
UPCABarcode(String data,
boolean randomWeight) |
| Constructor and Description |
|---|
PDF417Barcode(String data)
Constructs a new new PDF417 barcode with the specified data.
|
Copyright © 2003-2013 barbecue.sourceforge.net. All Rights Reserved.