public enum JurisdictionType extends java.lang.Enum<JurisdictionType>
| Enum Constant and Description |
|---|
City
City
|
Country
Country
|
County
County
|
Special
Special Tax Jurisdiction
|
State
State
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static JurisdictionType |
valueOf(int intValue) |
static JurisdictionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JurisdictionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JurisdictionType Country
public static final JurisdictionType State
public static final JurisdictionType County
public static final JurisdictionType City
public static final JurisdictionType Special
public static JurisdictionType[] values()
for (JurisdictionType c : JurisdictionType.values()) System.out.println(c);
public static JurisdictionType 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 nullpublic static JurisdictionType valueOf(int intValue)
public int getValue()