Enum WorksheetTypeId

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

public enum WorksheetTypeId extends Enum<WorksheetTypeId>
Filing worksheet Type
  • Enum Constant Details

    • Original

      public static final WorksheetTypeId Original
      The original filing for a period
    • Amended

      public static final WorksheetTypeId Amended
      Represents an amended filing for a period
    • Test

      public static final WorksheetTypeId Test
      Represents a test filing
  • Method Details

    • values

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