Package com.google.zxing
Enum BarcodeFormat
- All Implemented Interfaces:
- Serializable,- Comparable<BarcodeFormat>,- java.lang.constant.Constable
Enumerates barcode formats known to this package. Please keep alphabetized.
- Author:
- Sean Owen
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionAztec 2D barcode format.CODABAR 1D format.Code 128 1D format.Code 39 1D format.Code 93 1D format.Data Matrix 2D barcode format.EAN-13 1D format.EAN-8 1D format.ITF (Interleaved Two of Five) 1D format.MaxiCode 2D barcode format.PDF417 format.QR Code 2D barcode format.RSS 14RSS EXPANDEDUPC-A 1D format.UPC-E 1D format.UPC/EAN extension format.
- 
Method SummaryModifier and TypeMethodDescriptionstatic BarcodeFormatReturns the enum constant of this type with the specified name.static BarcodeFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
AZTECAztec 2D barcode format.
- 
CODABARCODABAR 1D format.
- 
CODE_39Code 39 1D format.
- 
CODE_93Code 93 1D format.
- 
CODE_128Code 128 1D format.
- 
DATA_MATRIXData Matrix 2D barcode format.
- 
EAN_8EAN-8 1D format.
- 
EAN_13EAN-13 1D format.
- 
ITFITF (Interleaved Two of Five) 1D format.
- 
MAXICODEMaxiCode 2D barcode format.
- 
PDF_417PDF417 format.
- 
QR_CODEQR Code 2D barcode format.
- 
RSS_14RSS 14
- 
RSS_EXPANDEDRSS EXPANDED
- 
UPC_AUPC-A 1D format.
- 
UPC_EUPC-E 1D format.
- 
UPC_EAN_EXTENSIONUPC/EAN extension format. Not a stand-alone format.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-