public static enum Fields.ModifyType extends Enum<Fields.ModifyType>
| Enum Constant and Description |
|---|
CEILING
指定日期属性按照进一法处理
|
ROUND
指定日期属性按照四舍五入处理
|
TRUNCATE
取指定日期短的起始值.
|
| Modifier and Type | Method and Description |
|---|---|
static Fields.ModifyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Fields.ModifyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fields.ModifyType TRUNCATE
public static final Fields.ModifyType ROUND
public static final Fields.ModifyType CEILING
public static Fields.ModifyType[] values()
for (Fields.ModifyType c : Fields.ModifyType.values()) System.out.println(c);
public static Fields.ModifyType 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 nullCopyright © 2020. All rights reserved.