public enum NexusTypeId extends java.lang.Enum<NexusTypeId>
| Enum Constant and Description |
|---|
None
Indicates no nexus
|
SalesOrSellersUseTax
Indicates the entity is voluntarily collecting tax (default)
This has replaced Collect
|
SalesTax
Indicates the entity is required to collect tax in the state
This has replaced Legal
|
SSTNonVolunteer
Indicates the entity is registered as a Non-Volunteer in an SST state.
|
SSTVolunteer
Indicates the entity is registered as a Volunteer in an SST state.
|
| Modifier and Type | Method and Description |
|---|---|
static NexusTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NexusTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NexusTypeId None
public static final NexusTypeId SalesOrSellersUseTax
public static final NexusTypeId SalesTax
public static final NexusTypeId SSTVolunteer
public static final NexusTypeId SSTNonVolunteer
public static NexusTypeId[] values()
for (NexusTypeId c : NexusTypeId.values()) System.out.println(c);
public static NexusTypeId valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null