Enum 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.
    • 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 name
        NullPointerException - if the argument is null
      • getValue

        public String getValue()