Package com.adyen.model.management
Enum PayoutSettings.VerificationStatusEnum
- java.lang.Object
-
- java.lang.Enum<PayoutSettings.VerificationStatusEnum>
-
- com.adyen.model.management.PayoutSettings.VerificationStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PayoutSettings.VerificationStatusEnum>
- Enclosing class:
- PayoutSettings
public static enum PayoutSettings.VerificationStatusEnum extends Enum<PayoutSettings.VerificationStatusEnum>
The status of the verification process for the bank account. Possible values: * **valid**: the verification was successful. * **pending**: the verification is in progress. * **invalid**: the information provided is not complete. * **rejected**: there are reasons to refuse working with this entity.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PayoutSettings.VerificationStatusEnumfromValue(String value)StringgetValue()StringtoString()static PayoutSettings.VerificationStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PayoutSettings.VerificationStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID
public static final PayoutSettings.VerificationStatusEnum INVALID
-
PENDING
public static final PayoutSettings.VerificationStatusEnum PENDING
-
REJECTED
public static final PayoutSettings.VerificationStatusEnum REJECTED
-
VALID
public static final PayoutSettings.VerificationStatusEnum VALID
-
-
Method Detail
-
values
public static PayoutSettings.VerificationStatusEnum[] 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 (PayoutSettings.VerificationStatusEnum c : PayoutSettings.VerificationStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PayoutSettings.VerificationStatusEnum 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<PayoutSettings.VerificationStatusEnum>
-
fromValue
public static PayoutSettings.VerificationStatusEnum fromValue(String value)
-
-