Enum DinersInfo.ServiceLevelEnum

  • All Implemented Interfaces:
    Serializable, Comparable<DinersInfo.ServiceLevelEnum>
    Enclosing class:
    DinersInfo

    public static enum DinersInfo.ServiceLevelEnum
    extends Enum<DinersInfo.ServiceLevelEnum>
    Specifies the service level (settlement type) of this payment method. Required for merchants operating in Japan. Possible values: * **noContract**: Adyen holds the contract with JCB. * **gatewayContract**: JCB receives the settlement and handles disputes, then pays out to you or your sub-merchant directly.
    • Method Detail

      • values

        public static DinersInfo.ServiceLevelEnum[] 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 (DinersInfo.ServiceLevelEnum c : DinersInfo.ServiceLevelEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DinersInfo.ServiceLevelEnum 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()