Package com.adyen.model.nexo
Enum ResponseModeType
- java.lang.Object
-
- java.lang.Enum<ResponseModeType>
-
- com.adyen.model.nexo.ResponseModeType
-
- All Implemented Interfaces:
Serializable,Comparable<ResponseModeType>
public enum ResponseModeType extends Enum<ResponseModeType>
Java class for ResponseModeType.The following schema fragment specifies the expected content contained within this class.
<simpleType name="ResponseModeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="NotRequired"/> <enumeration value="Immediate"/> <enumeration value="PrintEnd"/> <enumeration value="SoundEnd"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IMMEDIATEThe Message Response is immediate, after taking into account the request.NOT_REQUIREDThe Message Response is not required, except in case of error.PRINT_ENDThe Print Response is required at the end of print.SOUND_ENDThe Sound Response is required at the end of play.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResponseModeTypefromValue(String v)Returns the enum constant matching the given string, ornullif no match is found.Stringvalue()Value string.static ResponseModeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ResponseModeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_REQUIRED
@SerializedName("NotRequired") public static final ResponseModeType NOT_REQUIREDThe Message Response is not required, except in case of error.
-
IMMEDIATE
@SerializedName("Immediate") public static final ResponseModeType IMMEDIATEThe Message Response is immediate, after taking into account the request.
-
PRINT_END
@SerializedName("PrintEnd") public static final ResponseModeType PRINT_ENDThe Print Response is required at the end of print.
-
SOUND_END
@SerializedName("SoundEnd") public static final ResponseModeType SOUND_ENDThe Sound Response is required at the end of play.
-
-
Method Detail
-
values
public static ResponseModeType[] 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 (ResponseModeType c : ResponseModeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResponseModeType 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 ResponseModeType fromValue(String v)
Returns the enum constant matching the given string, ornullif no match is found.- Parameters:
v- string value- Returns:
- the ResponseModeType, or
nullif no match is found.
-
-