Enum Class Invoice.State

Object
Enum<Invoice.State>
ch.aaap.harvestclient.domain.Invoice.State
All Implemented Interfaces:
Serializable, Comparable<Invoice.State>, Constable
Enclosing interface:
Invoice

public static enum Invoice.State extends Enum<Invoice.State>
Not documented online: got this from Harvest:

For invoice's, you can use the sent_at, paid_at (or paid_date), closed_at, and due_date fields to determine state:

  • If sent_at, paid_at, and closed_at are empty, the invoice is a draft
  • If only sent_at is present and the current date is < due_date, the invoice is open
  • If only sent_at is present and the current date is >= due_date, the invoice is late
  • If paid_at is present, the invoice is paid
  • If closed_at is present, the invoice has been closed (or written-off)
  • Enum Constant Details

  • Method Details

    • values

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

      public static Invoice.State valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null