java.io.Serializable
, java.lang.Comparable<TimeClock.Season>
public static enum TimeClock.Season extends java.lang.Enum<TimeClock.Season>
Modifier and Type | Method | Description |
---|---|---|
static TimeClock.Season |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TimeClock.Season[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeClock.Season SPRING
public static final TimeClock.Season SUMMER
public static final TimeClock.Season FALL
public static final TimeClock.Season WINTER
public static TimeClock.Season[] values()
for (TimeClock.Season c : TimeClock.Season.values()) System.out.println(c);
public static TimeClock.Season valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null