Package com.adyen.model.management
Enum DinersInfo.ServiceLevelEnum
- java.lang.Object
-
- java.lang.Enum<DinersInfo.ServiceLevelEnum>
-
- com.adyen.model.management.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.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GATEWAYCONTRACTNOCONTRACT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DinersInfo.ServiceLevelEnumfromValue(String value)StringgetValue()StringtoString()static DinersInfo.ServiceLevelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static DinersInfo.ServiceLevelEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOCONTRACT
public static final DinersInfo.ServiceLevelEnum NOCONTRACT
-
GATEWAYCONTRACT
public static final DinersInfo.ServiceLevelEnum GATEWAYCONTRACT
-
-
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 nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<DinersInfo.ServiceLevelEnum>
-
fromValue
public static DinersInfo.ServiceLevelEnum fromValue(String value)
-
-