anl.aida.data
Enum TimeIntervalUnit

java.lang.Object
  extended by java.lang.Enum<TimeIntervalUnit>
      extended by anl.aida.data.TimeIntervalUnit
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TimeIntervalUnit>

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

Time interval unit enumeration.


Enum Constant Summary
DAY_OF_MONTH
           
DAY_OF_YEAR
           
HOUR
           
MILLISECOND
           
MINUTE
           
MONTH
           
SECOND
           
WEEK
           
YEAR
           
 
Method Summary
abstract  int getCalendarEquivalent()
           
static TimeIntervalUnit valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TimeIntervalUnit[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
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
 

Enum Constant Detail

YEAR

public static final TimeIntervalUnit YEAR

DAY_OF_MONTH

public static final TimeIntervalUnit DAY_OF_MONTH

DAY_OF_YEAR

public static final TimeIntervalUnit DAY_OF_YEAR

HOUR

public static final TimeIntervalUnit HOUR

SECOND

public static final TimeIntervalUnit SECOND

MINUTE

public static final TimeIntervalUnit MINUTE

MONTH

public static final TimeIntervalUnit MONTH

WEEK

public static final TimeIntervalUnit WEEK

MILLISECOND

public static final TimeIntervalUnit MILLISECOND
Method Detail

values

public static TimeIntervalUnit[] 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 (TimeIntervalUnit c : TimeIntervalUnit.values())
    System.out.println(c);

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

valueOf

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

getCalendarEquivalent

public abstract int getCalendarEquivalent()