Class DurationFormatAnnotationFormatterFactory
java.lang.Object
org.springframework.context.support.EmbeddedValueResolutionSupport
org.springframework.format.datetime.standard.DurationFormatAnnotationFormatterFactory
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,EmbeddedValueResolverAware,AnnotationFormatterFactory<DurationFormat>
public class DurationFormatAnnotationFormatterFactory
extends EmbeddedValueResolutionSupport
implements AnnotationFormatterFactory<DurationFormat>
Formats fields annotated with the
DurationFormat annotation using the
selected style for parsing and printing JSR-310 Duration.- Since:
- 6.2
- Author:
- Simon Baslé
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe types of fields that may be annotated with the <A> annotation.Parser<?>getParser(DurationFormat annotation, Class<?> fieldType) Get the Parser to parse a submitted value for a field offieldTypeannotated withannotation.Printer<?>getPrinter(DurationFormat 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
-
DurationFormatAnnotationFormatterFactory
public DurationFormatAnnotationFormatterFactory()
-
-
Method Details
-
getFieldTypes
Description copied from interface:AnnotationFormatterFactoryThe types of fields that may be annotated with the <A> annotation.- Specified by:
getFieldTypesin interfaceAnnotationFormatterFactory<DurationFormat>
-
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<DurationFormat>- 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<DurationFormat>- Parameters:
annotation- the annotation instancefieldType- the type of field that was annotated- Returns:
- the parser
-