public enum BoundaryLevel extends java.lang.Enum<BoundaryLevel>
Enum Constant and Description |
---|
Address
Street address precision
|
Zip5
5-digit zip precision
|
Zip9
9-digit zip precision
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static BoundaryLevel |
valueOf(int intValue) |
static BoundaryLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BoundaryLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundaryLevel Address
public static final BoundaryLevel Zip9
public static final BoundaryLevel Zip5
public static BoundaryLevel[] values()
for (BoundaryLevel c : BoundaryLevel.values()) System.out.println(c);
public static BoundaryLevel 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 BoundaryLevel valueOf(int intValue)
public int getValue()