Enum JurisTypeId
- java.lang.Object
-
- java.lang.Enum<JurisTypeId>
-
- net.avalara.avatax.rest.client.enums.JurisTypeId
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<JurisTypeId>
public enum JurisTypeId extends java.lang.Enum<JurisTypeId>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static JurisTypeIdvalueOf(int intValue)Returns the enum constant of this type with the specified name.static JurisTypeIdvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JurisTypeId[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STA
public static final JurisTypeId STA
-
CTY
public static final JurisTypeId CTY
-
CIT
public static final JurisTypeId CIT
-
STJ
public static final JurisTypeId STJ
-
CNT
public static final JurisTypeId CNT
-
-
Method Detail
-
values
public static JurisTypeId[] 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 (JurisTypeId c : JurisTypeId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JurisTypeId 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 JurisTypeId 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()
-
-