Enum NexusTypeId
- java.lang.Object
-
- java.lang.Enum<NexusTypeId>
-
- net.avalara.avatax.rest.client.enums.NexusTypeId
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<NexusTypeId>
public enum NexusTypeId extends java.lang.Enum<NexusTypeId>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NoneSalesOrSellersUseTaxSalesTaxSSTNonVolunteerSSTVolunteer
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static NexusTypeIdvalueOf(int intValue)Returns the enum constant of this type with the specified name.static NexusTypeIdvalueOf(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.
-
-
-
Enum Constant Detail
-
None
public static final NexusTypeId None
-
SalesOrSellersUseTax
public static final NexusTypeId SalesOrSellersUseTax
-
SalesTax
public static final NexusTypeId SalesTax
-
SSTVolunteer
public static final NexusTypeId SSTVolunteer
-
SSTNonVolunteer
public static final NexusTypeId SSTNonVolunteer
-
-
Method Detail
-
values
public static NexusTypeId[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (NexusTypeId c : NexusTypeId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NexusTypeId valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public int getValue()
-
-