Package com.adyen.model.tapi
Enum MessageCategory
- java.lang.Object
-
- java.lang.Enum<MessageCategory>
-
- com.adyen.model.tapi.MessageCategory
-
- All Implemented Interfaces:
Serializable,Comparable<MessageCategory>
public enum MessageCategory extends Enum<MessageCategory>
Gets or Sets MessageCategory
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABORTADMINBALANCE_INQUIRYCARD_ACQUISITIONDIAGNOSISDISPLAYENABLE_SERVICEEVENTGET_TOTALSINPUTINPUT_UPDATELOGINLOGOUTLOYALTYNONEPAYMENTPRINTRECONCILIATIONREVERSALSTORED_VALUETRANSACTION_STATUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MessageCategoryfromValue(String value)StringgetValue()StringtoString()static MessageCategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static MessageCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABORT
public static final MessageCategory ABORT
-
ADMIN
public static final MessageCategory ADMIN
-
BALANCE_INQUIRY
public static final MessageCategory BALANCE_INQUIRY
-
CARD_ACQUISITION
public static final MessageCategory CARD_ACQUISITION
-
DIAGNOSIS
public static final MessageCategory DIAGNOSIS
-
DISPLAY
public static final MessageCategory DISPLAY
-
ENABLE_SERVICE
public static final MessageCategory ENABLE_SERVICE
-
EVENT
public static final MessageCategory EVENT
-
GET_TOTALS
public static final MessageCategory GET_TOTALS
-
INPUT
public static final MessageCategory INPUT
-
INPUT_UPDATE
public static final MessageCategory INPUT_UPDATE
-
LOGIN
public static final MessageCategory LOGIN
-
LOGOUT
public static final MessageCategory LOGOUT
-
LOYALTY
public static final MessageCategory LOYALTY
-
NONE
public static final MessageCategory NONE
-
PAYMENT
public static final MessageCategory PAYMENT
-
PRINT
public static final MessageCategory PRINT
-
RECONCILIATION
public static final MessageCategory RECONCILIATION
-
REVERSAL
public static final MessageCategory REVERSAL
-
STORED_VALUE
public static final MessageCategory STORED_VALUE
-
TRANSACTION_STATUS
public static final MessageCategory TRANSACTION_STATUS
-
-
Method Detail
-
values
public static MessageCategory[] 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 (MessageCategory c : MessageCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageCategory 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<MessageCategory>
-
fromValue
public static MessageCategory fromValue(String value)
-
-