jcolibri.test.recommenders.travelData
Enum TravelDescription.Seasons
java.lang.Object
java.lang.Enum<TravelDescription.Seasons>
jcolibri.test.recommenders.travelData.TravelDescription.Seasons
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TravelDescription.Seasons>
- Enclosing class:
- TravelDescription
public static enum TravelDescription.Seasons
- extends java.lang.Enum<TravelDescription.Seasons>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
January
public static final TravelDescription.Seasons January
February
public static final TravelDescription.Seasons February
March
public static final TravelDescription.Seasons March
April
public static final TravelDescription.Seasons April
May
public static final TravelDescription.Seasons May
June
public static final TravelDescription.Seasons June
July
public static final TravelDescription.Seasons July
August
public static final TravelDescription.Seasons August
September
public static final TravelDescription.Seasons September
October
public static final TravelDescription.Seasons October
November
public static final TravelDescription.Seasons November
December
public static final TravelDescription.Seasons December
values
public static TravelDescription.Seasons[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (TravelDescription.Seasons c : TravelDescription.Seasons.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TravelDescription.Seasons valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null