public enum ModelFieldFill extends Enum<ModelFieldFill>
| 枚举常量和说明 |
|---|
DATE |
DATETIME
当前日期时间
|
MILL_TIMESTAMP
当前毫秒级时间戳
|
NULL |
STATIC_METHOD
自定义方法回调
|
TIME |
TIMESTAMP
当前秒级时间戳
|
public static final ModelFieldFill NULL
public static final ModelFieldFill DATETIME
public static final ModelFieldFill DATE
public static final ModelFieldFill TIME
public static final ModelFieldFill TIMESTAMP
public static final ModelFieldFill MILL_TIMESTAMP
public static final ModelFieldFill STATIC_METHOD
public static ModelFieldFill[] values()
for (ModelFieldFill c : ModelFieldFill.values()) System.out.println(c);
public static ModelFieldFill valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2024. All rights reserved.