Enum ACHReturnCode
- java.lang.Object
-
- java.lang.Enum<ACHReturnCode>
-
- io.moov.sdk.models.components.ACHReturnCode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ACHReturnCode>
public enum ACHReturnCode extends java.lang.Enum<ACHReturnCode>
ACHReturnCodeThe return code of an ACH transaction that caused the bank account status to change.
- R02: Account Closed - R03: No Account/Unable to Locate Account - R04: Invalid Account Number - R05: Improper Debit to Consumer Account - R07: Authorization Revoked by Customer - R08: Payment Stopped - R10: Customer Advises Originator is Not Known or Authorized to Receiver - R11: Customer Advises Entry Not in Accordance with the Terms of the Authorization - R12: Branch Sold to Another DFI - R13: RDFI not qualified to participate - R14: Representative payee deceased or unable to continue in that capacity - R15: Beneficiary or bank account holder - R16: Bank account frozen - R17: Entry with Invalid Account Number Initiated Under Questionable Circumstances - R20: Non-payment bank account - R23: Credit entry refused by receiver - R29: Corporate customer advises not authorized - R34: Limited participation RDFI - R38: Stop Payment on Source Document (Adjustment Entry) - R39: Improper Source Document
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<ACHReturnCode>fromValue(java.lang.String value)java.lang.Stringvalue()static ACHReturnCodevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ACHReturnCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
R02
public static final ACHReturnCode R02
-
R03
public static final ACHReturnCode R03
-
R04
public static final ACHReturnCode R04
-
R05
public static final ACHReturnCode R05
-
R07
public static final ACHReturnCode R07
-
R08
public static final ACHReturnCode R08
-
R10
public static final ACHReturnCode R10
-
R11
public static final ACHReturnCode R11
-
R12
public static final ACHReturnCode R12
-
R13
public static final ACHReturnCode R13
-
R14
public static final ACHReturnCode R14
-
R15
public static final ACHReturnCode R15
-
R16
public static final ACHReturnCode R16
-
R17
public static final ACHReturnCode R17
-
R20
public static final ACHReturnCode R20
-
R23
public static final ACHReturnCode R23
-
R29
public static final ACHReturnCode R29
-
R34
public static final ACHReturnCode R34
-
R38
public static final ACHReturnCode R38
-
R39
public static final ACHReturnCode R39
-
-
Method Detail
-
values
public static ACHReturnCode[] 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 (ACHReturnCode c : ACHReturnCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ACHReturnCode 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<ACHReturnCode> fromValue(java.lang.String value)
-
-