public enum DistanceUnit extends Enum<DistanceUnit> implements Serializable
Modifier and Type | Method and Description |
---|---|
static DistanceUnit |
fromValue(String v) |
String |
value() |
static DistanceUnit |
valueOf(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static DistanceUnit fromValue(String v)
public String value()
Copyright © 2024. All rights reserved.