public static enum Code.Format extends java.lang.Enum<Code.Format>
| Enum Constant and Description |
|---|
AZTEC |
CODABAR |
CODE_128 |
CODE_39 |
CODE_93 |
DATA_MATRIX |
EAN_13 |
EAN_8 |
ITF |
MAXICODE |
PDF_417 |
QR_CODE |
RSS_14 |
RSS_EXPANDED |
UPC_A |
UPC_E |
UPC_EAN_EXTENSION |
| Modifier and Type | Method and Description |
|---|---|
static Code.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Code.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Code.Format AZTEC
public static final Code.Format CODABAR
public static final Code.Format CODE_39
public static final Code.Format CODE_93
public static final Code.Format CODE_128
public static final Code.Format DATA_MATRIX
public static final Code.Format EAN_8
public static final Code.Format EAN_13
public static final Code.Format ITF
public static final Code.Format MAXICODE
public static final Code.Format PDF_417
public static final Code.Format QR_CODE
public static final Code.Format RSS_14
public static final Code.Format RSS_EXPANDED
public static final Code.Format UPC_A
public static final Code.Format UPC_E
public static final Code.Format UPC_EAN_EXTENSION
public static Code.Format[] values()
for (Code.Format c : Code.Format.values()) System.out.println(c);
public static Code.Format valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2011–2021. All rights reserved.