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