Enum NexusTypeId
- All Implemented Interfaces:
Serializable,Comparable<NexusTypeId>,java.lang.constant.Constable
Describes the different types of statuses which describe an entity (company).
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates no nexusIndicates the entity is voluntarily collecting tax (default)Indicates the entity is required to collect tax in the stateIndicates the entity is registered as a Non-Volunteer in an SST state.Indicates the entity is registered as a Volunteer in an SST state. -
Method Summary
Modifier and TypeMethodDescriptionintgetValue()static NexusTypeIdvalueOf(int intValue) Returns the enum constant of this type with the specified name.static NexusTypeIdReturns 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.
-
Enum Constant Details
-
None
Indicates no nexus -
SalesOrSellersUseTax
Indicates the entity is voluntarily collecting tax (default) -
SalesTax
Indicates the entity is required to collect tax in the state -
SSTVolunteer
Indicates the entity is registered as a Volunteer in an SST state. Only your SST administrator may set this option. -
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
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
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 nameNullPointerException- if the argument is null
-
valueOf
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 nameNullPointerException- if the argument is null
-
getValue
public int getValue()
-