public enum DateTimeGroupLevel extends Enum<DateTimeGroupLevel>
DateTimeGroup
.Enum Constant and Description |
---|
DAY
The day level.
|
HOUR
The hour level.
|
MINUTE
The minute level.
|
MONTH
The month level.
|
SECOND
The second level.
|
YEAR
The year level.
|
Modifier and Type | Method and Description |
---|---|
static DateTimeGroupLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateTimeGroupLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateTimeGroupLevel DAY
public static final DateTimeGroupLevel HOUR
public static final DateTimeGroupLevel MINUTE
public static final DateTimeGroupLevel MONTH
public static final DateTimeGroupLevel SECOND
public static final DateTimeGroupLevel YEAR
public static DateTimeGroupLevel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static DateTimeGroupLevel[] values()
for (DateTimeGroupLevel c : DateTimeGroupLevel.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.