Class NumberFormatAnnotationFormatterFactory
java.lang.Object
org.springframework.context.support.EmbeddedValueResolutionSupport
org.springframework.format.number.NumberFormatAnnotationFormatterFactory
- All Implemented Interfaces:
Aware
,EmbeddedValueResolverAware
,AnnotationFormatterFactory<NumberFormat>
public class NumberFormatAnnotationFormatterFactory
extends EmbeddedValueResolutionSupport
implements AnnotationFormatterFactory<NumberFormat>
Formats fields annotated with the
NumberFormat
annotation.- Since:
- 3.0
- Author:
- Keith Donald, Juergen Hoeller
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionThe types of fields that may be annotated with the <A> annotation.getParser
(NumberFormat annotation, Class<?> fieldType) Get the Parser to parse a submitted value for a field offieldType
annotated withannotation
.getPrinter
(NumberFormat annotation, Class<?> fieldType) Get the Printer to print the value of a field offieldType
annotated withannotation
.Methods inherited from class org.springframework.context.support.EmbeddedValueResolutionSupport
resolveEmbeddedValue, setEmbeddedValueResolver
-
Constructor Details
-
NumberFormatAnnotationFormatterFactory
public NumberFormatAnnotationFormatterFactory()
-
-
Method Details
-
getFieldTypes
Description copied from interface:AnnotationFormatterFactory
The types of fields that may be annotated with the <A> annotation.- Specified by:
getFieldTypes
in interfaceAnnotationFormatterFactory<NumberFormat>
-
getPrinter
Description copied from interface:AnnotationFormatterFactory
Get the Printer to print the value of a field offieldType
annotated withannotation
.If the type T the printer accepts is not assignable to
fieldType
, a coercion fromfieldType
to T will be attempted before the Printer is invoked.- Specified by:
getPrinter
in interfaceAnnotationFormatterFactory<NumberFormat>
- Parameters:
annotation
- the annotation instancefieldType
- the type of field that was annotated- Returns:
- the printer
-
getParser
Description copied from interface:AnnotationFormatterFactory
Get the Parser to parse a submitted value for a field offieldType
annotated withannotation
.If the object the parser returns is not assignable to
fieldType
, a coercion tofieldType
will be attempted before the field is set.- Specified by:
getParser
in interfaceAnnotationFormatterFactory<NumberFormat>
- Parameters:
annotation
- the annotation instancefieldType
- the type of field that was annotated- Returns:
- the parser
-