public class JodaDateTimeFormatAnnotationFormatterFactory extends Object implements AnnotationFormatterFactory<DateTimeFormat>, EmbeddedValueResolverAware
DateTimeFormat
annotation.DateTimeFormat
Constructor and Description |
---|
JodaDateTimeFormatAnnotationFormatterFactory() |
Modifier and Type | Method and Description |
---|---|
Set<Class<?>> |
getFieldTypes()
The types of fields that may be annotated with the <A> annotation.
|
Parser<org.joda.time.DateTime> |
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 . |
protected String |
resolveEmbeddedValue(String value) |
void |
setEmbeddedValueResolver(StringValueResolver resolver)
Set the StringValueResolver to use for resolving embedded definition values.
|
public JodaDateTimeFormatAnnotationFormatterFactory()
public final Set<Class<?>> getFieldTypes()
AnnotationFormatterFactory
getFieldTypes
in interface AnnotationFormatterFactory<DateTimeFormat>
public void setEmbeddedValueResolver(StringValueResolver resolver)
EmbeddedValueResolverAware
setEmbeddedValueResolver
in interface EmbeddedValueResolverAware
public Printer<?> getPrinter(DateTimeFormat annotation, Class<?> fieldType)
AnnotationFormatterFactory
fieldType
annotated with annotation
.
If the type <T> the printer accepts is not assignable to fieldType
, a coersion 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<org.joda.time.DateTime> getParser(DateTimeFormat annotation, Class<?> fieldType)
AnnotationFormatterFactory
fieldType
annotated with annotation
.
If the object the parser returns is not assignable to fieldType
, a coersion 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 annotatedCopyright © 2015. All rights reserved.