Package com.adyen.model.marketpayaccount
Enum PerformVerificationRequest.AccountStateTypeEnum
- java.lang.Object
-
- java.lang.Enum<PerformVerificationRequest.AccountStateTypeEnum>
-
- com.adyen.model.marketpayaccount.PerformVerificationRequest.AccountStateTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PerformVerificationRequest.AccountStateTypeEnum>
- Enclosing class:
- PerformVerificationRequest
public static enum PerformVerificationRequest.AccountStateTypeEnum extends Enum<PerformVerificationRequest.AccountStateTypeEnum>
The state required for the account holder. > Permitted values: `Processing`, `Payout`.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LIMITEDPAYOUTLIMITEDPROCESSINGLIMITLESSPAYOUTLIMITLESSPROCESSINGPAYOUTPROCESSING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PerformVerificationRequest.AccountStateTypeEnumfromValue(String value)StringgetValue()StringtoString()static PerformVerificationRequest.AccountStateTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PerformVerificationRequest.AccountStateTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LIMITEDPAYOUT
public static final PerformVerificationRequest.AccountStateTypeEnum LIMITEDPAYOUT
-
LIMITEDPROCESSING
public static final PerformVerificationRequest.AccountStateTypeEnum LIMITEDPROCESSING
-
LIMITLESSPAYOUT
public static final PerformVerificationRequest.AccountStateTypeEnum LIMITLESSPAYOUT
-
LIMITLESSPROCESSING
public static final PerformVerificationRequest.AccountStateTypeEnum LIMITLESSPROCESSING
-
PAYOUT
public static final PerformVerificationRequest.AccountStateTypeEnum PAYOUT
-
PROCESSING
public static final PerformVerificationRequest.AccountStateTypeEnum PROCESSING
-
-
Method Detail
-
values
public static PerformVerificationRequest.AccountStateTypeEnum[] 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 (PerformVerificationRequest.AccountStateTypeEnum c : PerformVerificationRequest.AccountStateTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PerformVerificationRequest.AccountStateTypeEnum 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<PerformVerificationRequest.AccountStateTypeEnum>
-
fromValue
public static PerformVerificationRequest.AccountStateTypeEnum fromValue(String value)
-
-