public static enum ConvertStringToDateTimeAction.FieldType extends Enum<ConvertStringToDateTimeAction.FieldType>
Modifier and Type | Method and Description |
---|---|
void |
applyCode(CodeWriter writer,
String pattern) |
abstract void |
applyCodeChain(CodeWriter writer,
String pattern) |
abstract void |
applyMethod(BasicFieldTransformer transformer,
String pattern) |
static ConvertStringToDateTimeAction.FieldType |
lookup(String value) |
static ConvertStringToDateTimeAction.FieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConvertStringToDateTimeAction.FieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConvertStringToDateTimeAction.FieldType DATETIME
public static final ConvertStringToDateTimeAction.FieldType DATE
public static final ConvertStringToDateTimeAction.FieldType TIME
public static ConvertStringToDateTimeAction.FieldType[] values()
for (ConvertStringToDateTimeAction.FieldType c : ConvertStringToDateTimeAction.FieldType.values()) System.out.println(c);
public static ConvertStringToDateTimeAction.FieldType 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 ConvertStringToDateTimeAction.FieldType lookup(String value)
public void applyCode(CodeWriter writer, String pattern)
public abstract void applyCodeChain(CodeWriter writer, String pattern)
public abstract void applyMethod(BasicFieldTransformer transformer, String pattern)