public class DateTimeFormatAnnotationFormatterFactory extends java.lang.Object implements AnnotationFormatterFactory<DateTimeFormat>, EmbeddedValueResolverAware
DateTimeFormat annotation using
a DateFormatter.JodaDateTimeFormatAnnotationFormatterFactory| Constructor and Description |
|---|
DateTimeFormatAnnotationFormatterFactory() |
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<java.lang.Class<?>> |
getFieldTypes()
The types of fields that may be annotated with the <A> annotation.
|
protected Formatter<java.util.Date> |
getFormatter(DateTimeFormat annotation,
java.lang.Class<?> fieldType) |
Parser<?> |
getParser(DateTimeFormat annotation,
java.lang.Class<?> fieldType)
Get the Parser to parse a submitted value for a field of
fieldType
annotated with annotation. |
Printer<?> |
getPrinter(DateTimeFormat annotation,
java.lang.Class<?> fieldType)
Get the Printer to print the value of a field of
fieldType annotated with
annotation. |
protected java.lang.String |
resolveEmbeddedValue(java.lang.String value) |
void |
setEmbeddedValueResolver(org.springframework.util.StringValueResolver resolver)
Set the StringValueResolver to use for resolving embedded definition values.
|
public DateTimeFormatAnnotationFormatterFactory()
public void setEmbeddedValueResolver(org.springframework.util.StringValueResolver resolver)
EmbeddedValueResolverAwaresetEmbeddedValueResolver in interface EmbeddedValueResolverAwarepublic java.util.Set<java.lang.Class<?>> getFieldTypes()
AnnotationFormatterFactorygetFieldTypes in interface AnnotationFormatterFactory<DateTimeFormat>public Printer<?> getPrinter(DateTimeFormat annotation, java.lang.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 in interface AnnotationFormatterFactory<DateTimeFormat>annotation - the annotation instancefieldType - the type of field that was annotatedpublic Parser<?> getParser(DateTimeFormat annotation, java.lang.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 in interface AnnotationFormatterFactory<DateTimeFormat>annotation - the annotation instancefieldType - the type of field that was annotatedprotected Formatter<java.util.Date> getFormatter(DateTimeFormat annotation, java.lang.Class<?> fieldType)
protected java.lang.String resolveEmbeddedValue(java.lang.String value)