public enum BarcodeType extends Enum<BarcodeType>
Java class for BarcodeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="BarcodeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="EAN8"/>
<enumeration value="EAN13"/>
<enumeration value="UPCA"/>
<enumeration value="Code25"/>
<enumeration value="Code128"/>
<enumeration value="PDF417"/>
<enumeration value="QRCode"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CODE_128
Code 128 barcode type.
|
CODE_25
Code 25 barcode type.
|
EAN_13
Ean 13 barcode type.
|
EAN_8
Ean 8 barcode type.
|
PDF_417
Pdf 417 barcode type.
|
QRCODE
Qrcode barcode type.
|
UPCA
Upca barcode type.
|
| Modifier and Type | Method and Description |
|---|---|
static BarcodeType |
fromValue(String v)
From value barcode type.
|
String |
value()
Value string.
|
static BarcodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BarcodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BarcodeType EAN_8
public static final BarcodeType EAN_13
public static final BarcodeType UPCA
public static final BarcodeType CODE_25
public static final BarcodeType CODE_128
public static final BarcodeType PDF_417
public static final BarcodeType QRCODE
public static BarcodeType[] values()
for (BarcodeType c : BarcodeType.values()) System.out.println(c);
public static BarcodeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static BarcodeType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.