public enum DistanceUnit extends java.lang.Enum<DistanceUnit> implements java.io.Serializable
| Modifier and Type | Method and Description |
|---|---|
static DistanceUnit |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static DistanceUnit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DistanceUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistanceUnit FOOT
public static final DistanceUnit METER
public static final DistanceUnit MILE
public static final DistanceUnit KILOMETER
public static DistanceUnit[] values()
for (DistanceUnit c : DistanceUnit.values()) System.out.println(c);
public static DistanceUnit 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 DistanceUnit fromValue(java.lang.String v)
public java.lang.String value()