private static enum DateUtils.ModifyType extends java.lang.Enum<DateUtils.ModifyType>
| Enum Constant and Description |
|---|
CEILING
Ceiling.
|
ROUND
Rounding.
|
TRUNCATE
Truncation.
|
| Modifier and Type | Method and Description |
|---|---|
static DateUtils.ModifyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DateUtils.ModifyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateUtils.ModifyType TRUNCATE
public static final DateUtils.ModifyType ROUND
public static final DateUtils.ModifyType CEILING
public static DateUtils.ModifyType[] values()
for (DateUtils.ModifyType c : DateUtils.ModifyType.values()) System.out.println(c);
public static DateUtils.ModifyType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null