Version 4.10.0

hirondelle.web4j.model
Enum DateTime.Unit

Object
  extended by Enum<DateTime.Unit>
      extended by hirondelle.web4j.model.DateTime.Unit
All Implemented Interfaces:
Serializable, Comparable<DateTime.Unit>
Enclosing class:
DateTime

public static enum DateTime.Unit
extends Enum<DateTime.Unit>

The seven parts of a DateTime object. The DAY represents the day of the month (1..31), not the weekday.


Enum Constant Summary
DAY
           
HOUR
           
MINUTE
           
MONTH
           
NANOSECONDS
           
SECOND
           
YEAR
           
 
Method Summary
static DateTime.Unit valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DateTime.Unit[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

YEAR

public static final DateTime.Unit YEAR

MONTH

public static final DateTime.Unit MONTH

DAY

public static final DateTime.Unit DAY

HOUR

public static final DateTime.Unit HOUR

MINUTE

public static final DateTime.Unit MINUTE

SECOND

public static final DateTime.Unit SECOND

NANOSECONDS

public static final DateTime.Unit NANOSECONDS
Method Detail

values

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

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

valueOf

public static DateTime.Unit valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

Version 4.10.0

Copyright Hirondelle Systems. Published October 19, 2013 - User Guide - All Docs.