public enum BarcodeType extends Enum<BarcodeType>
| Enum Constant and Description |
|---|
DataMatrix |
PDF417 |
QRCode |
| Modifier and Type | Method and Description |
|---|---|
static BarcodeType |
getInstance(String type)
Gets an instance of BarcodeType corresponding to the type supplied
|
String |
toString() |
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 PDF417
public static final BarcodeType QRCode
public static final BarcodeType DataMatrix
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 static BarcodeType getInstance(String type)
type - barcode typepublic String toString()
toString in class Enum<BarcodeType>Copyright © 2010 - 2020 Adobe. All Rights Reserved