Enum APStatus

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

public enum APStatus extends Enum<APStatus>
/// The user can set some tolerance or threshold limits inorder to take appropriate actions when their transactions are above or below certain threshold limits. Account Payable (AP) status code indicates an action that needs to be taken when the tolerance/threshold falls between certain range.
  • Enum Constant Details

    • NoAccrualMatch

      public static final APStatus NoAccrualMatch
    • ShortPayItemsAccrueMatch

      public static final APStatus ShortPayItemsAccrueMatch
    • MarkForReviewMatch

      public static final APStatus MarkForReviewMatch
    • RejectMatch

      public static final APStatus RejectMatch
    • NoAccrualUndercharge

      public static final APStatus NoAccrualUndercharge
    • AccruedUndercharge

      public static final APStatus AccruedUndercharge
    • ShortPayItemsAccrueUndercharge

      public static final APStatus ShortPayItemsAccrueUndercharge
    • NeedReviewUndercharge

      public static final APStatus NeedReviewUndercharge
    • RejectUndercharge

      public static final APStatus RejectUndercharge
    • NoAccrualOvercharge

      public static final APStatus NoAccrualOvercharge
    • ShortPayAvalaraCalculated

      public static final APStatus ShortPayAvalaraCalculated
    • ShortPayItemsAccrueOvercharge

      public static final APStatus ShortPayItemsAccrueOvercharge
    • MarkForReviewOvercharge

      public static final APStatus MarkForReviewOvercharge
    • RejectOvercharge

      public static final APStatus RejectOvercharge
    • NoAccrualAmountThresholdNotMet

      public static final APStatus NoAccrualAmountThresholdNotMet
    • NoAccrualExemptedCostCenter

      public static final APStatus NoAccrualExemptedCostCenter
    • NoAccrualExemptedItem

      public static final APStatus NoAccrualExemptedItem
    • NoAccrualTrustedVendor

      public static final APStatus NoAccrualTrustedVendor
    • AccruedVendor

      public static final APStatus AccruedVendor
    • NeedReviewVendor

      public static final APStatus NeedReviewVendor
    • NoAccrualExemptedVendor

      public static final APStatus NoAccrualExemptedVendor
    • NoAccrualExemptedGLAccount

      public static final APStatus NoAccrualExemptedGLAccount
    • PendingAccrualVendor

      public static final APStatus PendingAccrualVendor
    • PendingAccrualUndercharge

      public static final APStatus PendingAccrualUndercharge
  • Method Details

    • values

      public static APStatus[] 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 APStatus 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 APStatus 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()