Package com.adyen.model.nexo
Enum InfoQualifyType
- java.lang.Object
-
- java.lang.Enum<InfoQualifyType>
-
- com.adyen.model.nexo.InfoQualifyType
-
- All Implemented Interfaces:
Serializable,Comparable<InfoQualifyType>
public enum InfoQualifyType extends Enum<InfoQualifyType>
Java class for InfoQualifyType.The following schema fragment specifies the expected content contained within this class.
<simpleType name="InfoQualifyType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Status"/> <enumeration value="Error"/> <enumeration value="Display"/> <enumeration value="Sound"/> <enumeration value="Input"/> <enumeration value="POIReplication"/> <enumeration value="CustomerAssistance"/> <enumeration value="Receipt"/> <enumeration value="Document"/> <enumeration value="Voucher"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOMER_ASSISTANCEInput of the Cardholder POI interface which can be entered by the Cashier to assist the Customer.DISPLAYStandard display interface.DOCUMENTWhen the POI System wants to print specific document (check, dynamic currency conversion ...).ERRORThe information is related to an error situation occurring on the messageType sender.INPUTAnswer to a question or information to be entered by the Cashier or the Customer, at the request of the POI Terminal or the Sale Terminal.POI_REPLICATIONInformation displayed on the Cardholder POI interface, replicated on the Cashier interface.RECEIPTWhere you print the Payment receipt that could be located on the Sale Terminal or in some cases a restricted Sale ticket on the POI Terminal.SOUNDStandard sound interface.STATUSThe information is a new state on which the messageType sender is entering.VOUCHERCoupons, voucher or special ticket generated by the POI or the Sale System and to be printed.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InfoQualifyTypefromValue(String v)Returns the enum constant matching the given string, ornullif no match is found.Stringvalue()Value string.static InfoQualifyTypevalueOf(String name)Returns the enum constant of this type with the specified name.static InfoQualifyType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATUS
@SerializedName("Status") public static final InfoQualifyType STATUSThe information is a new state on which the messageType sender is entering. For instance, during a payment, the POI could display to the Cashier that POI request
-
ERROR
@SerializedName("Error") public static final InfoQualifyType ERRORThe information is related to an error situation occurring on the messageType sender.
-
DISPLAY
@SerializedName("Display") public static final InfoQualifyType DISPLAYStandard display interface.
-
SOUND
@SerializedName("Sound") public static final InfoQualifyType SOUNDStandard sound interface.
-
INPUT
@SerializedName("Input") public static final InfoQualifyType INPUTAnswer to a question or information to be entered by the Cashier or the Customer, at the request of the POI Terminal or the Sale Terminal.
-
POI_REPLICATION
@SerializedName("POIReplication") public static final InfoQualifyType POI_REPLICATIONInformation displayed on the Cardholder POI interface, replicated on the Cashier interface.
-
CUSTOMER_ASSISTANCE
@SerializedName("CustomerAssistance") public static final InfoQualifyType CUSTOMER_ASSISTANCEInput of the Cardholder POI interface which can be entered by the Cashier to assist the Customer.
-
RECEIPT
@SerializedName("Receipt") public static final InfoQualifyType RECEIPTWhere you print the Payment receipt that could be located on the Sale Terminal or in some cases a restricted Sale ticket on the POI Terminal.
-
DOCUMENT
@SerializedName("Document") public static final InfoQualifyType DOCUMENTWhen the POI System wants to print specific document (check, dynamic currency conversion ...). Used by the Sale System when the printer is not located on the
-
VOUCHER
@SerializedName("Voucher") public static final InfoQualifyType VOUCHERCoupons, voucher or special ticket generated by the POI or the Sale System and to be printed.
-
-
Method Detail
-
values
public static InfoQualifyType[] 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 (InfoQualifyType c : InfoQualifyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InfoQualifyType 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 InfoQualifyType fromValue(String v)
Returns the enum constant matching the given string, ornullif no match is found.- Parameters:
v- string value- Returns:
- the InfoQualifyType, or
nullif no match is found.
-
-