public class JodaDateTimeFormatAnnotationFormatterFactory extends EmbeddedValueResolutionSupport implements AnnotationFormatterFactory<DateTimeFormat>
DateTimeFormat annotation using Joda-Time.
NOTE: Spring's Joda-Time support requires Joda-Time 2.x, as of Spring 4.0.
DateTimeFormat| 构造器和说明 |
|---|
JodaDateTimeFormatAnnotationFormatterFactory() |
| 限定符和类型 | 方法和说明 |
|---|---|
Set<Class<?>> |
getFieldTypes()
The types of fields that may be annotated with the <A> annotation.
|
protected DateTimeFormatter |
getFormatter(DateTimeFormat annotation,
Class<?> fieldType)
Factory method used to create a
DateTimeFormatter. |
Parser<?> |
getParser(DateTimeFormat annotation,
Class<?> fieldType)
Get the Parser to parse a submitted value for a field of
fieldType
annotated with annotation. |
Printer<?> |
getPrinter(DateTimeFormat annotation,
Class<?> fieldType)
Get the Printer to print the value of a field of
fieldType annotated with
annotation. |
resolveEmbeddedValue, setEmbeddedValueResolverpublic JodaDateTimeFormatAnnotationFormatterFactory()
public final Set<Class<?>> getFieldTypes()
AnnotationFormatterFactorypublic Printer<?> getPrinter(DateTimeFormat annotation, Class<?> fieldType)
AnnotationFormatterFactoryfieldType annotated with
annotation.
If the type T the printer accepts is not assignable to fieldType, a
coercion from fieldType to T will be attempted before the Printer is invoked.
getPrinter 在接口中 AnnotationFormatterFactory<DateTimeFormat>annotation - the annotation instancefieldType - the type of field that was annotatedpublic Parser<?> getParser(DateTimeFormat annotation, Class<?> fieldType)
AnnotationFormatterFactoryfieldType
annotated with annotation.
If the object the parser returns is not assignable to fieldType,
a coercion to fieldType will be attempted before the field is set.
getParser 在接口中 AnnotationFormatterFactory<DateTimeFormat>annotation - the annotation instancefieldType - the type of field that was annotatedprotected DateTimeFormatter getFormatter(DateTimeFormat annotation, Class<?> fieldType)
DateTimeFormatter.annotation - the format annotation for the fieldfieldType - the type of fieldDateTimeFormatter instance