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.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHORISED
-
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
-
-
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)
-
-