Package io.scanbot.sdk.barcode
Enum BarcodeDocumentFormat
- java.lang.Object
-
- java.lang.Enum<BarcodeDocumentFormat>
-
- io.scanbot.sdk.barcode.BarcodeDocumentFormat
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BarcodeDocumentFormat>
public enum BarcodeDocumentFormat extends java.lang.Enum<BarcodeDocumentFormat>
Type of barcode document format used.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AAMVAAmerican Association of Motor Vehicle Administrators barcode document.BOARDING_PASSBoarding pass barcode document.BRITISH_COLUMBIA_DRIVER_LICENSEBritish Columbia driver license barcode document.DE_MEDICAL_PLANGerman medication plan barcode document.GS1GS1 barcode document.HIBCHealth industry barcode document.ID_CARD_PDF_417ID card barcode document.MEDICAL_CERTIFICATEGerman medical certificate barcode document.SEPASEPA barcode (aka GiroCode) document.SWISS_QRSwiss QR barcode document.VCARDVCard barcode document.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BarcodeDocumentFormatvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BarcodeDocumentFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AAMVA
public static final BarcodeDocumentFormat AAMVA
American Association of Motor Vehicle Administrators barcode document.
-
BOARDING_PASS
public static final BarcodeDocumentFormat BOARDING_PASS
Boarding pass barcode document.
-
DE_MEDICAL_PLAN
public static final BarcodeDocumentFormat DE_MEDICAL_PLAN
German medication plan barcode document.
-
MEDICAL_CERTIFICATE
public static final BarcodeDocumentFormat MEDICAL_CERTIFICATE
German medical certificate barcode document.
-
ID_CARD_PDF_417
public static final BarcodeDocumentFormat ID_CARD_PDF_417
ID card barcode document.
-
SEPA
public static final BarcodeDocumentFormat SEPA
SEPA barcode (aka GiroCode) document.
-
SWISS_QR
public static final BarcodeDocumentFormat SWISS_QR
Swiss QR barcode document.
-
VCARD
public static final BarcodeDocumentFormat VCARD
VCard barcode document.
-
GS1
public static final BarcodeDocumentFormat GS1
GS1 barcode document.
-
HIBC
public static final BarcodeDocumentFormat HIBC
Health industry barcode document.
-
BRITISH_COLUMBIA_DRIVER_LICENSE
public static final BarcodeDocumentFormat BRITISH_COLUMBIA_DRIVER_LICENSE
British Columbia driver license barcode document.
-
-
Method Detail
-
values
public static BarcodeDocumentFormat[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BarcodeDocumentFormat c : BarcodeDocumentFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BarcodeDocumentFormat valueOf(java.lang.String name)
Returns 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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-