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)Returns the enum constant matching the given string, ornullif no match is found.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
@SerializedName("EAN8") public static final BarcodeType EAN_8Ean 8 barcode type.
-
EAN_13
@SerializedName("EAN13") public static final BarcodeType EAN_13Ean 13 barcode type.
-
UPCA
public static final BarcodeType UPCA
Upca barcode type.
-
CODE_25
@SerializedName("Code25") public static final BarcodeType CODE_25Code 25 barcode type.
-
CODE_128
@SerializedName("Code128") public static final BarcodeType CODE_128Code 128 barcode type.
-
PDF_417
@SerializedName("PDF417") public static final BarcodeType PDF_417Pdf 417 barcode type.
-
QRCODE
@SerializedName("QRCode") public static final BarcodeType QRCODEQrcode 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)
Returns the enum constant matching the given string, ornullif no match is found.- Parameters:
v- string value- Returns:
- the BarcodeType, or
nullif no match is found.
-
-