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