Enum Code.Format
- java.lang.Object
-
- java.lang.Enum<Code.Format>
-
- org.primefaces.extensions.model.codescanner.Code.Format
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Code.Format>
- Enclosing class:
- Code
public static enum Code.Format extends java.lang.Enum<Code.Format>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Code.FormatvalueOf(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.
-
-
-
Enum Constant Detail
-
AZTEC
public static final Code.Format AZTEC
-
CODABAR
public static final Code.Format CODABAR
-
CODE_39
public static final Code.Format CODE_39
-
CODE_93
public static final Code.Format CODE_93
-
CODE_128
public static final Code.Format CODE_128
-
DATA_MATRIX
public static final Code.Format DATA_MATRIX
-
EAN_8
public static final Code.Format EAN_8
-
EAN_13
public static final Code.Format EAN_13
-
ITF
public static final Code.Format ITF
-
MAXICODE
public static final Code.Format MAXICODE
-
PDF_417
public static final Code.Format PDF_417
-
QR_CODE
public static final Code.Format QR_CODE
-
RSS_14
public static final Code.Format RSS_14
-
RSS_EXPANDED
public static final Code.Format RSS_EXPANDED
-
UPC_A
public static final Code.Format UPC_A
-
UPC_E
public static final Code.Format UPC_E
-
UPC_EAN_EXTENSION
public static final Code.Format UPC_EAN_EXTENSION
-
-
Method Detail
-
values
public static Code.Format[] 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 (Code.Format c : Code.Format.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Code.Format 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
-
-