Package com.adyen.model.nexo
Enum MessageClassType
- java.lang.Object
-
- java.lang.Enum<MessageClassType>
-
- com.adyen.model.nexo.MessageClassType
-
- All Implemented Interfaces:
Serializable,Comparable<MessageClassType>
public enum MessageClassType extends Enum<MessageClassType>
Java class for MessageClassType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MessageClassType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Service"/> <enumeration value="Device"/> <enumeration value="Event"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEVICEA device messageType pair either: Inside a Service request and response.EVENTAn unsolicited event notification by the POI System to the Sale System.SERVICEA transaction messageType pair initiated by the Sale System, and requested to the POI System.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MessageClassTypefromValue(String v)From value message class type.Stringvalue()Value string.static MessageClassTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MessageClassType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SERVICE
public static final MessageClassType SERVICE
A transaction messageType pair initiated by the Sale System, and requested to the POI System.
-
DEVICE
public static final MessageClassType DEVICE
A device messageType pair either: Inside a Service request and response. This device messageType pair is initiated by the POI System, and sent to Sale System,
-
EVENT
public static final MessageClassType EVENT
An unsolicited event notification by the POI System to the Sale System.
-
-
Method Detail
-
values
public static MessageClassType[] 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 (MessageClassType c : MessageClassType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageClassType 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 MessageClassType fromValue(String v)
From value message class type.- Parameters:
v- the v- Returns:
- the message class type
-
-