Package com.adyen.model.balanceplatform
Enum AccountSupportingEntityCapability.RequestedLevelEnum
- java.lang.Object
-
- java.lang.Enum<AccountSupportingEntityCapability.RequestedLevelEnum>
-
- com.adyen.model.balanceplatform.AccountSupportingEntityCapability.RequestedLevelEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AccountSupportingEntityCapability.RequestedLevelEnum>
- Enclosing class:
- AccountSupportingEntityCapability
public static enum AccountSupportingEntityCapability.RequestedLevelEnum extends Enum<AccountSupportingEntityCapability.RequestedLevelEnum>
The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HIGHLOWMEDIUMNOTAPPLICABLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccountSupportingEntityCapability.RequestedLevelEnumfromValue(String value)StringgetValue()StringtoString()static AccountSupportingEntityCapability.RequestedLevelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AccountSupportingEntityCapability.RequestedLevelEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HIGH
public static final AccountSupportingEntityCapability.RequestedLevelEnum HIGH
-
LOW
public static final AccountSupportingEntityCapability.RequestedLevelEnum LOW
-
MEDIUM
public static final AccountSupportingEntityCapability.RequestedLevelEnum MEDIUM
-
NOTAPPLICABLE
public static final AccountSupportingEntityCapability.RequestedLevelEnum NOTAPPLICABLE
-
-
Method Detail
-
values
public static AccountSupportingEntityCapability.RequestedLevelEnum[] 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 (AccountSupportingEntityCapability.RequestedLevelEnum c : AccountSupportingEntityCapability.RequestedLevelEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountSupportingEntityCapability.RequestedLevelEnum 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<AccountSupportingEntityCapability.RequestedLevelEnum>
-
fromValue
public static AccountSupportingEntityCapability.RequestedLevelEnum fromValue(String value)
-
-