Package model
Enum PaymentInstrument.BankAccountValidationCheckEnum
- java.lang.Object
-
- java.lang.Enum<PaymentInstrument.BankAccountValidationCheckEnum>
-
- model.PaymentInstrument.BankAccountValidationCheckEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PaymentInstrument.BankAccountValidationCheckEnum>
- Enclosing class:
- PaymentInstrument
public static enum PaymentInstrument.BankAccountValidationCheckEnum extends Enum<PaymentInstrument.BankAccountValidationCheckEnum>
Details the results of the bank account validation check if `attempt_bank_account_validation_check` is set to **true**.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPaymentInstrument.BankAccountValidationCheckEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description INCONCLUSIVEINVALIDNOT_ATTEMPTEDUNKNOWN_DEFAULTVALID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PaymentInstrument.BankAccountValidationCheckEnumfromValue(String value)StringgetRawValue()StringgetValue()voidsetRawValue(String s)StringtoString()static PaymentInstrument.BankAccountValidationCheckEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PaymentInstrument.BankAccountValidationCheckEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_ATTEMPTED
public static final PaymentInstrument.BankAccountValidationCheckEnum NOT_ATTEMPTED
-
INCONCLUSIVE
public static final PaymentInstrument.BankAccountValidationCheckEnum INCONCLUSIVE
-
INVALID
public static final PaymentInstrument.BankAccountValidationCheckEnum INVALID
-
VALID
public static final PaymentInstrument.BankAccountValidationCheckEnum VALID
-
UNKNOWN_DEFAULT
public static final PaymentInstrument.BankAccountValidationCheckEnum UNKNOWN_DEFAULT
-
-
Method Detail
-
values
public static PaymentInstrument.BankAccountValidationCheckEnum[] 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 (PaymentInstrument.BankAccountValidationCheckEnum c : PaymentInstrument.BankAccountValidationCheckEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaymentInstrument.BankAccountValidationCheckEnum 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<PaymentInstrument.BankAccountValidationCheckEnum>
-
setRawValue
public void setRawValue(String s)
-
getRawValue
public String getRawValue()
-
fromValue
public static PaymentInstrument.BankAccountValidationCheckEnum fromValue(String value)
-
-