Package com.adyen.model.tapi
Enum InfoQualify
- java.lang.Object
-
- java.lang.Enum<InfoQualify>
-
- com.adyen.model.tapi.InfoQualify
-
- All Implemented Interfaces:
Serializable,Comparable<InfoQualify>
public enum InfoQualify extends Enum<InfoQualify>
Gets or Sets InfoQualify
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOMER_ASSISTANCEDISPLAYDOCUMENTERRORINPUTPOI_REPLICATIONRECEIPTSOUNDSTATUSVOUCHER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InfoQualifyfromValue(String value)StringgetValue()StringtoString()static InfoQualifyvalueOf(String name)Returns the enum constant of this type with the specified name.static InfoQualify[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOMER_ASSISTANCE
public static final InfoQualify CUSTOMER_ASSISTANCE
-
DISPLAY
public static final InfoQualify DISPLAY
-
DOCUMENT
public static final InfoQualify DOCUMENT
-
ERROR
public static final InfoQualify ERROR
-
INPUT
public static final InfoQualify INPUT
-
POI_REPLICATION
public static final InfoQualify POI_REPLICATION
-
RECEIPT
public static final InfoQualify RECEIPT
-
SOUND
public static final InfoQualify SOUND
-
STATUS
public static final InfoQualify STATUS
-
VOUCHER
public static final InfoQualify VOUCHER
-
-
Method Detail
-
values
public static InfoQualify[] 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 (InfoQualify c : InfoQualify.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InfoQualify 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<InfoQualify>
-
fromValue
public static InfoQualify fromValue(String value)
-
-