public enum PKBarcodeFormat extends Enum<PKBarcodeFormat>
| Enum Constant and Description |
|---|
PKBarcodeFormatAztec |
PKBarcodeFormatCode128 |
PKBarcodeFormatPDF417 |
PKBarcodeFormatQR |
| Modifier and Type | Method and Description |
|---|---|
static PKBarcodeFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PKBarcodeFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PKBarcodeFormat PKBarcodeFormatQR
public static final PKBarcodeFormat PKBarcodeFormatPDF417
public static final PKBarcodeFormat PKBarcodeFormatAztec
public static final PKBarcodeFormat PKBarcodeFormatCode128
public static PKBarcodeFormat[] values()
for (PKBarcodeFormat c : PKBarcodeFormat.values()) System.out.println(c);
public static PKBarcodeFormat 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 nullCopyright © 2012–2022. All rights reserved.