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