Enum NexusTypeId

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

public enum NexusTypeId extends Enum<NexusTypeId>
Describes the different types of statuses which describe an entity (company).
  • Enum Constant Details

    • None

      public static final NexusTypeId None
      Indicates no nexus
    • SalesOrSellersUseTax

      public static final NexusTypeId SalesOrSellersUseTax
      Indicates the entity is voluntarily collecting tax (default)
    • SalesTax

      public static final NexusTypeId SalesTax
      Indicates the entity is required to collect tax in the state
    • SSTVolunteer

      public static final NexusTypeId SSTVolunteer
      Indicates the entity is registered as a Volunteer in an SST state. Only your SST administrator may set this option.
    • SSTNonVolunteer

      public static final NexusTypeId SSTNonVolunteer
      Indicates the entity is registered as a Non-Volunteer in an SST state. Only your SST administrator may set this option.
  • Method Details

    • values

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