public enum JurisTypeId extends java.lang.Enum<JurisTypeId>
| Enum Constant and Description |
|---|
CIT
City
|
CNT
Country
|
CTY
County
|
STA
State
|
STJ
Special
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static JurisTypeId |
valueOf(int intValue) |
static JurisTypeId |
valueOf(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.
|
public static final JurisTypeId STA
public static final JurisTypeId CTY
public static final JurisTypeId CIT
public static final JurisTypeId STJ
public static final JurisTypeId CNT
public static JurisTypeId[] values()
for (JurisTypeId c : JurisTypeId.values()) System.out.println(c);
public static JurisTypeId 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 JurisTypeId valueOf(int intValue)
public int getValue()