public static enum Item.measureUnitsType extends java.lang.Enum<Item.measureUnitsType>
Enum Constant and Description |
---|
si
System SI - km, lt, etc.
|
us
United States - mi, gal, etc
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Item.measureUnitsType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Item.measureUnitsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Item.measureUnitsType si
public static final Item.measureUnitsType us
public static Item.measureUnitsType[] values()
for (Item.measureUnitsType c : Item.measureUnitsType.values()) System.out.println(c);
public static Item.measureUnitsType 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 int getValue()