Enum AccountHolderCapability.RequestedLevelEnum
- java.lang.Object
-
- java.lang.Enum<AccountHolderCapability.RequestedLevelEnum>
-
- com.adyen.model.configurationwebhooks.AccountHolderCapability.RequestedLevelEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AccountHolderCapability.RequestedLevelEnum>
- Enclosing class:
- AccountHolderCapability
public static enum AccountHolderCapability.RequestedLevelEnum extends Enum<AccountHolderCapability.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 AccountHolderCapability.RequestedLevelEnumfromValue(String value)StringgetValue()StringtoString()static AccountHolderCapability.RequestedLevelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AccountHolderCapability.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 AccountHolderCapability.RequestedLevelEnum HIGH
-
LOW
public static final AccountHolderCapability.RequestedLevelEnum LOW
-
MEDIUM
public static final AccountHolderCapability.RequestedLevelEnum MEDIUM
-
NOTAPPLICABLE
public static final AccountHolderCapability.RequestedLevelEnum NOTAPPLICABLE
-
-
Method Detail
-
values
public static AccountHolderCapability.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 (AccountHolderCapability.RequestedLevelEnum c : AccountHolderCapability.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 AccountHolderCapability.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<AccountHolderCapability.RequestedLevelEnum>
-
fromValue
public static AccountHolderCapability.RequestedLevelEnum fromValue(String value)
-
-