Package com.adyen.model.checkout
Enum Payment.ResultCodeEnum
- java.lang.Object
-
- java.lang.Enum<Payment.ResultCodeEnum>
-
- com.adyen.model.checkout.Payment.ResultCodeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<Payment.ResultCodeEnum>
- Enclosing class:
- Payment
public static enum Payment.ResultCodeEnum extends Enum<Payment.ResultCodeEnum>
The result of the payment. For more information, see [Result codes](https://docs.adyen.com/online-payments/payment-result-codes). Possible values: * **Authorised** – The payment was successfully authorised. This state serves as an indicator to proceed with the delivery of goods and services. This is a final state. * **Received** – Indicates the payment request was successfully received by Adyen, and will be processed. This is the initial state for all payments. * **Pending** – The payment order was successfully received but the final status of the payment is not available yet. This is common for payment methods with an asynchronous flow.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHORISEDPENDINGRECEIVED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Payment.ResultCodeEnumfromValue(String value)StringgetValue()StringtoString()static Payment.ResultCodeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static Payment.ResultCodeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHORISED
public static final Payment.ResultCodeEnum AUTHORISED
-
RECEIVED
public static final Payment.ResultCodeEnum RECEIVED
-
PENDING
public static final Payment.ResultCodeEnum PENDING
-
-
Method Detail
-
values
public static Payment.ResultCodeEnum[] 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 (Payment.ResultCodeEnum c : Payment.ResultCodeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Payment.ResultCodeEnum 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<Payment.ResultCodeEnum>
-
fromValue
public static Payment.ResultCodeEnum fromValue(String value)
-
-