public enum LengthUnit extends Enum<LengthUnit>
| Modifier and Type | Method and Description |
|---|---|
static LengthUnit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LengthUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LengthUnit km
public static final LengthUnit m
public static LengthUnit[] values()
for (LengthUnit c : LengthUnit.values()) System.out.println(c);
public static LengthUnit 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 nullCopyright © 2018 Uber Open Source. All rights reserved.