Class DateTimeFormatAnnotationFormatterFactory
java.lang.Object
org.springframework.context.support.EmbeddedValueResolutionSupport
org.springframework.format.datetime.DateTimeFormatAnnotationFormatterFactory
- All Implemented Interfaces:
Aware,EmbeddedValueResolverAware,AnnotationFormatterFactory<DateTimeFormat>
public class DateTimeFormatAnnotationFormatterFactory
extends EmbeddedValueResolutionSupport
implements AnnotationFormatterFactory<DateTimeFormat>
Formats fields annotated with the
DateTimeFormat annotation using a DateFormatter.- Since:
- 3.2
- Author:
- Phillip Webb, Sam Brannen
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe types of fields that may be annotated with the <A> annotation.getFormatter(DateTimeFormat annotation, Class<?> fieldType) Parser<?>getParser(DateTimeFormat annotation, Class<?> fieldType) Get the Parser to parse a submitted value for a field offieldTypeannotated withannotation.Printer<?>getPrinter(DateTimeFormat annotation, Class<?> fieldType) Get the Printer to print the value of a field offieldTypeannotated withannotation.Methods inherited from class org.springframework.context.support.EmbeddedValueResolutionSupport
resolveEmbeddedValue, setEmbeddedValueResolver
-
Constructor Details
-
DateTimeFormatAnnotationFormatterFactory
public DateTimeFormatAnnotationFormatterFactory()
-
-
Method Details
-
getFieldTypes
Description copied from interface:AnnotationFormatterFactoryThe types of fields that may be annotated with the <A> annotation.- Specified by:
getFieldTypesin interfaceAnnotationFormatterFactory<DateTimeFormat>
-
getPrinter
Description copied from interface:AnnotationFormatterFactoryGet the Printer to print the value of a field offieldTypeannotated withannotation.If the type T the printer accepts is not assignable to
fieldType, a coercion fromfieldTypeto T will be attempted before the Printer is invoked.- Specified by:
getPrinterin interfaceAnnotationFormatterFactory<DateTimeFormat>- Parameters:
annotation- the annotation instancefieldType- the type of field that was annotated- Returns:
- the printer
-
getParser
Description copied from interface:AnnotationFormatterFactoryGet the Parser to parse a submitted value for a field offieldTypeannotated withannotation.If the object the parser returns is not assignable to
fieldType, a coercion tofieldTypewill be attempted before the field is set.- Specified by:
getParserin interfaceAnnotationFormatterFactory<DateTimeFormat>- Parameters:
annotation- the annotation instancefieldType- the type of field that was annotated- Returns:
- the parser
-
getFormatter
-