Package io.moov.sdk.models.components
Enum BankAccountStatusReason
- java.lang.Object
-
- java.lang.Enum<BankAccountStatusReason>
-
- io.moov.sdk.models.components.BankAccountStatusReason
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BankAccountStatusReason>
public enum BankAccountStatusReason extends java.lang.Enum<BankAccountStatusReason>
BankAccountStatusReasonThe reason the bank account status changed to the current value.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<BankAccountStatusReason>fromValue(java.lang.String value)java.lang.Stringvalue()static BankAccountStatusReasonvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BankAccountStatusReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BANK_ACCOUNT_CREATED
public static final BankAccountStatusReason BANK_ACCOUNT_CREATED
-
VERIFICATION_INITIATED
public static final BankAccountStatusReason VERIFICATION_INITIATED
-
MICRO_DEPOSIT_ATTEMPTS_EXCEEDED
public static final BankAccountStatusReason MICRO_DEPOSIT_ATTEMPTS_EXCEEDED
-
MICRO_DEPOSIT_EXPIRED
public static final BankAccountStatusReason MICRO_DEPOSIT_EXPIRED
-
MAX_VERIFICATION_FAILURES
public static final BankAccountStatusReason MAX_VERIFICATION_FAILURES
-
VERIFICATION_ATTEMPTS_EXCEEDED
public static final BankAccountStatusReason VERIFICATION_ATTEMPTS_EXCEEDED
-
VERIFICATION_EXPIRED
public static final BankAccountStatusReason VERIFICATION_EXPIRED
-
VERIFICATION_SUCCESSFUL
public static final BankAccountStatusReason VERIFICATION_SUCCESSFUL
-
ACH_DEBIT_RETURN
public static final BankAccountStatusReason ACH_DEBIT_RETURN
-
ACH_CREDIT_RETURN
public static final BankAccountStatusReason ACH_CREDIT_RETURN
-
RTP_CREDIT_FAILURE
public static final BankAccountStatusReason RTP_CREDIT_FAILURE
-
MICRO_DEPOSIT_RETURN
public static final BankAccountStatusReason MICRO_DEPOSIT_RETURN
-
ADMIN_ACTION
public static final BankAccountStatusReason ADMIN_ACTION
-
OTHER
public static final BankAccountStatusReason OTHER
-
-
Method Detail
-
values
public static BankAccountStatusReason[] 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 (BankAccountStatusReason c : BankAccountStatusReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BankAccountStatusReason valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
fromValue
public static java.util.Optional<BankAccountStatusReason> fromValue(java.lang.String value)
-
-