public static enum DistanceHandler.Precision extends java.lang.Enum<DistanceHandler.Precision>
Enum Constant and Description |
---|
EXACT |
TWENTYFEET |
TWOFEET |
TWOHUNDREDFEET |
Modifier and Type | Method and Description |
---|---|
static DistanceHandler.Precision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DistanceHandler.Precision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistanceHandler.Precision EXACT
public static final DistanceHandler.Precision TWOFEET
public static final DistanceHandler.Precision TWENTYFEET
public static final DistanceHandler.Precision TWOHUNDREDFEET
public static DistanceHandler.Precision[] values()
for (DistanceHandler.Precision c : DistanceHandler.Precision.values()) System.out.println(c);
public static DistanceHandler.Precision 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 null