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