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