Enum ACHClass

java.lang.Object
java.lang.Enum<ACHClass>
com.plaid.client.model.ACHClass
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ACHClass>, java.lang.constant.Constable

public enum ACHClass
extends java.lang.Enum<ACHClass>
Specifies the use case of the transfer. Required for transfers on an ACH network. `\"arc\"` - Accounts Receivable Entry `\"cbr`\" - Cross Border Entry `\"ccd\"` - Corporate Credit or Debit - fund transfer between two corporate bank accounts `\"cie\"` - Customer Initiated Entry `\"cor\"` - Automated Notification of Change `\"ctx\"` - Corporate Trade Exchange `\"iat\"` - International `\"mte\"` - Machine Transfer Entry `\"pbr\"` - Cross Border Entry `\"pop\"` - Point-of-Purchase Entry `\"pos\"` - Point-of-Sale Entry `\"ppd\"` - Prearranged Payment or Deposit - the transfer is part of a pre-existing relationship with a consumer, eg. bill payment `\"rck\"` - Re-presented Check Entry `\"tel\"` - Telephone-Initiated Entry `\"web\"` - Internet-Initiated Entry - debits from a consumer’s account where their authorization is obtained over the Internet
  • Nested Class Summary

    Nested Classes 
    Modifier and Type Class Description
    static class  ACHClass.Adapter  

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants 
    Enum Constant Description
    ARC  
    CBR  
    CCD  
    CIE  
    COR  
    CTX  
    ENUM_UNKNOWN  
    IAT  
    MTE  
    PBR  
    POP  
    POS  
    PPD  
    RCK  
    TEL  
    WEB  
  • Method Summary

    Modifier and Type Method Description
    static ACHClass fromValue​(java.lang.String value)  
    java.lang.String getValue()  
    java.lang.String toString()  
    static ACHClass valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static ACHClass[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

  • Method Details

    • values

      public static ACHClass[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ACHClass 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 name
      java.lang.NullPointerException - if the argument is null
    • getValue

      public java.lang.String getValue()
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Enum<ACHClass>
    • fromValue

      public static ACHClass fromValue​(java.lang.String value)