|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.aspose.barcoderecognition.BarCodeReadType
public final class BarCodeReadType
Specification the type of barcode.
[Example] BarCodeReadType type = BarCodeReadType.Code39Extended; BarCodeReader rd = new BarCodeReader(Toolkit.getDefaultToolkit().getImage("multiple.png"),type.append(BarCodeReadType.Code128)); while(rd.read()) { System.out.println(rd.getCodeText()); }
Field Summary | |
---|---|
static BarCodeReadType |
AllSupportedTypes
All support types |
static BarCodeReadType |
AustraliaPost
Australia Post 4 State BarCode Type |
static BarCodeReadType |
Aztec
Aztec BarCodeReadType |
static BarCodeReadType |
BooklandEAN
BooklanEAN barcode type |
static BarCodeReadType |
Codabar
Codabar barcode type |
static BarCodeReadType |
Code11
Code11 barcode type |
static BarCodeReadType |
Code128
Code128 barcode type |
static BarCodeReadType |
Code39Extended
Code39 Extended barcode type |
static BarCodeReadType |
Code39Standard
Code39 Standard barcode type |
static BarCodeReadType |
Code93Extended
Code93 Extended barcode type |
static BarCodeReadType |
Code93Standard
Code93 Standard barcode type |
static BarCodeReadType |
DataMatrix
GS-1 Datamatrix barcode type |
static BarCodeReadType |
DeutschePostIdentcode
DeutschePostIdentcode BarCodeReadType |
static BarCodeReadType |
EAN128
EAN128 barcode type |
static BarCodeReadType |
EAN13
EAN13 barcode type |
static BarCodeReadType |
EAN14
EAN13 barcode type |
static BarCodeReadType |
EAN8
EAN8 barcode type |
static BarCodeReadType |
Empty
An empty type |
static BarCodeReadType |
IATA2of5
IATA 2 of 5 BarCodeReadType |
static BarCodeReadType |
Interleaved2Of5
Interleaved2Of5 barcode type |
static BarCodeReadType |
ItalianPost25
Italian Post 25 BarCodeReadType |
static BarCodeReadType |
ITF14
ITF14 barcode type |
static BarCodeReadType |
MacroPdf417
Macro Pdf417 barcode type |
static BarCodeReadType |
Matrix2of5
Matrix2of5 barcode type |
static BarCodeReadType |
MSI
MSI barcode type |
static BarCodeReadType |
OneCode
USPS OneCode barcode type |
static BarCodeReadType |
PatchCode
PatchCode barcode type |
static BarCodeReadType |
Pdf417
Pdf417 barcode type |
static BarCodeReadType |
Planet
Planet barcode type |
static BarCodeReadType |
Postnet
Postnet barcode type |
static BarCodeReadType |
PZN
PZN BarCodeReadType |
static BarCodeReadType |
QR
QR barcode type |
static BarCodeReadType |
SSCC18
SSCC18 barcode type |
static BarCodeReadType |
Standard2of5
Standard2Of5 barcode type not supported |
static BarCodeReadType |
Supplement
2 or 5 digits as Supplement in UPCA/EAN13 |
static BarCodeReadType |
UPCA
UPCA barcode type |
static BarCodeReadType |
UPCE
UPCE barcode type |
Method Summary | |
---|---|
BarCodeReadType |
append(BarCodeReadType type)
Append another ReadType into current type |
boolean |
equals(BarCodeReadType type2)
|
boolean |
equals(java.lang.Object obj)
|
static BarCodeReadType |
parse(java.lang.String name)
Parse a the type name into BarCodeReadType instance. |
java.lang.String |
toString()
Gets the name in String |
Methods inherited from class java.lang.Object |
---|
getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final BarCodeReadType AllSupportedTypes
public static final BarCodeReadType Empty
public static final BarCodeReadType AustraliaPost
public static final BarCodeReadType BooklandEAN
public static final BarCodeReadType Codabar
public static final BarCodeReadType Code11
public static final BarCodeReadType Code128
public static final BarCodeReadType Code39Standard
public static final BarCodeReadType Code39Extended
public static final BarCodeReadType Code93Standard
public static final BarCodeReadType Code93Extended
public static final BarCodeReadType DataMatrix
public static final BarCodeReadType EAN128
public static final BarCodeReadType EAN13
public static final BarCodeReadType EAN14
public static final BarCodeReadType EAN8
public static final BarCodeReadType Interleaved2Of5
public static final BarCodeReadType ITF14
public static final BarCodeReadType MacroPdf417
public static final BarCodeReadType MSI
public static final BarCodeReadType PatchCode
public static final BarCodeReadType OneCode
public static final BarCodeReadType Planet
public static final BarCodeReadType Pdf417
public static final BarCodeReadType Postnet
public static final BarCodeReadType QR
public static final BarCodeReadType SSCC18
public static final BarCodeReadType Standard2of5
public static final BarCodeReadType UPCA
public static final BarCodeReadType UPCE
public static final BarCodeReadType Supplement
public static final BarCodeReadType Matrix2of5
public static final BarCodeReadType PZN
public static final BarCodeReadType DeutschePostIdentcode
public static final BarCodeReadType ItalianPost25
public static final BarCodeReadType IATA2of5
public static final BarCodeReadType Aztec
Method Detail |
---|
public BarCodeReadType append(BarCodeReadType type)
type
- the other type to appendpublic static BarCodeReadType parse(java.lang.String name)
Parse a the type name into BarCodeReadType instance.
name
- the name of the type
[Example] System.out.println(BarCodeReadType.parse("OneCode").toString());The output is : OneCode
public java.lang.String toString()
Gets the name in String
toString
in class java.lang.Object
[Example] System.out.println(BarCodeReadType.AustraliaPost.toString());The output is "AustraliaPost"
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public boolean equals(BarCodeReadType type2)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |