Package com.adyen.model.management
Enum JCBInfo.ServiceLevelEnum
- java.lang.Object
-
- java.lang.Enum<JCBInfo.ServiceLevelEnum>
-
- com.adyen.model.management.JCBInfo.ServiceLevelEnum
-
- All Implemented Interfaces:
Serializable,Comparable<JCBInfo.ServiceLevelEnum>
- Enclosing class:
- JCBInfo
public static enum JCBInfo.ServiceLevelEnum extends Enum<JCBInfo.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 JCBInfo.ServiceLevelEnumfromValue(String value)StringgetValue()StringtoString()static JCBInfo.ServiceLevelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static JCBInfo.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 JCBInfo.ServiceLevelEnum NOCONTRACT
-
GATEWAYCONTRACT
public static final JCBInfo.ServiceLevelEnum GATEWAYCONTRACT
-
-
Method Detail
-
values
public static JCBInfo.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 (JCBInfo.ServiceLevelEnum c : JCBInfo.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 JCBInfo.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<JCBInfo.ServiceLevelEnum>
-
fromValue
public static JCBInfo.ServiceLevelEnum fromValue(String value)
-
-