hirondelle.web4j.model
Enum DateTime.Unit
Object
Enum<DateTime.Unit>
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.
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. |
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
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
Copyright Hirondelle Systems. Published October 19, 2013 - User Guide - All Docs.