public class Jsr310DateTimeFormatAnnotationFormatterFactory extends EmbeddedValueResolutionSupport implements AnnotationFormatterFactory<DateTimeFormat>
DateTimeFormat
annotation using the
JSR-310 java.time
package in JDK 8.DateTimeFormat
Modifier and Type | Field and Description |
---|---|
private static java.util.Set<java.lang.Class<?>> |
FIELD_TYPES |
Constructor and Description |
---|
Jsr310DateTimeFormatAnnotationFormatterFactory() |
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 java.time.format.DateTimeFormatter |
getFormatter(DateTimeFormat annotation,
java.lang.Class<?> fieldType)
Factory method used to create a
DateTimeFormatter . |
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 . |
private boolean |
isLocal(java.lang.Class<?> fieldType) |
resolveEmbeddedValue, setEmbeddedValueResolver
public Jsr310DateTimeFormatAnnotationFormatterFactory()
public final java.util.Set<java.lang.Class<?>> getFieldTypes()
AnnotationFormatterFactory
getFieldTypes
in interface AnnotationFormatterFactory<DateTimeFormat>
public Printer<?> getPrinter(DateTimeFormat annotation, java.lang.Class<?> fieldType)
AnnotationFormatterFactory
fieldType
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)
AnnotationFormatterFactory
fieldType
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 java.time.format.DateTimeFormatter getFormatter(DateTimeFormat annotation, java.lang.Class<?> fieldType)
DateTimeFormatter
.annotation
- the format annotation for the fieldfieldType
- the declared type of the fieldDateTimeFormatter
instanceprivate boolean isLocal(java.lang.Class<?> fieldType)