Package com.adyen.model.nexo
Enum BarcodeType
- java.lang.Object
-
- java.lang.Enum<BarcodeType>
-
- com.adyen.model.nexo.BarcodeType
-
- All Implemented Interfaces:
Serializable,Comparable<BarcodeType>
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>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BarcodeTypefromValue(String v)From value barcode type.Stringvalue()Value string.static BarcodeTypevalueOf(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.
-
-
-
Enum Constant Detail
-
EAN_8
public static final BarcodeType EAN_8
Ean 8 barcode type.
-
EAN_13
public static final BarcodeType EAN_13
Ean 13 barcode type.
-
UPCA
public static final BarcodeType UPCA
Upca barcode type.
-
CODE_25
public static final BarcodeType CODE_25
Code 25 barcode type.
-
CODE_128
public static final BarcodeType CODE_128
Code 128 barcode type.
-
PDF_417
public static final BarcodeType PDF_417
Pdf 417 barcode type.
-
QRCODE
public static final BarcodeType QRCODE
Qrcode barcode type.
-
-
Method Detail
-
values
public static BarcodeType[] 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 (BarcodeType c : BarcodeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BarcodeType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
Value string.- Returns:
- the string
-
fromValue
public static BarcodeType fromValue(String v)
From value barcode type.- Parameters:
v- the v- Returns:
- the barcode type
-
-