Enum ReportDateFilter

java.lang.Object
java.lang.Enum<ReportDateFilter>
net.avalara.avatax.rest.client.enums.ReportDateFilter
All Implemented Interfaces:
Serializable, Comparable<ReportDateFilter>, java.lang.constant.Constable

public enum ReportDateFilter extends Enum<ReportDateFilter>
The date filter type for report "RD" for Reporting Date, "DD" for Document Date, "TD" for Tax Date, "PD" for Payment Date
  • Enum Constant Details

    • DocumentDate

      public static final ReportDateFilter DocumentDate
      The date when the transaction is posted
    • ModifiedDate

      public static final ReportDateFilter ModifiedDate
      The date when the transaction is modified
    • PaymentDate

      public static final ReportDateFilter PaymentDate
      The date when the transaction is paid for
    • ReportingDate

      public static final ReportDateFilter ReportingDate
      The date when the transaction is added to report
    • TaxDate

      public static final ReportDateFilter TaxDate
      The date when the transaction is being taxed
  • Method Details

    • values

      public static ReportDateFilter[] 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 ReportDateFilter 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 name
      NullPointerException - if the argument is null
    • valueOf

      public static ReportDateFilter valueOf(int intValue)
      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:
      intValue - 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 name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()