public static enum Simple.OneTwoThree extends Enum<Simple.OneTwoThree>
| Modifier and Type | Method and Description |
|---|---|
static Simple.OneTwoThree |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Simple.OneTwoThree[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Simple.OneTwoThree ONE
public static final Simple.OneTwoThree TWO
public static final Simple.OneTwoThree THREE
public static Simple.OneTwoThree[] values()
for (Simple.OneTwoThree c : Simple.OneTwoThree.values()) System.out.println(c);
public static Simple.OneTwoThree 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 © 2017 University of Waikato, Hamilton, NZ. All Rights Reserved.