org.jangband.data
Enum TimeOfDay

java.lang.Object
  extended by java.lang.Enum<TimeOfDay>
      extended by org.jangband.data.TimeOfDay
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TimeOfDay>

public enum TimeOfDay
extends java.lang.Enum<TimeOfDay>

I've devided the day into three hour chunks.


Enum Constant Summary
AFTERNOON
           
DAWN
           
EVENING
           
MIDNIGHT
           
MORNING
           
NOON
           
PREDAWN
           
SUNSET
           
 
Method Summary
static TimeOfDay valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TimeOfDay[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MIDNIGHT

public static final TimeOfDay MIDNIGHT

PREDAWN

public static final TimeOfDay PREDAWN

DAWN

public static final TimeOfDay DAWN

MORNING

public static final TimeOfDay MORNING

NOON

public static final TimeOfDay NOON

AFTERNOON

public static final TimeOfDay AFTERNOON

SUNSET

public static final TimeOfDay SUNSET

EVENING

public static final TimeOfDay EVENING
Method Detail

values

public static final TimeOfDay[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(TimeOfDay c : TimeOfDay.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static TimeOfDay 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




SourceForge.net Logo

Server provided by Gene Davis Software.