public class NumberFormatAnnotationFormatterFactory extends EmbeddedValueResolutionSupport implements AnnotationFormatterFactory<NumberFormat>
NumberFormat
annotation.NumberFormat
Constructor and Description |
---|
NumberFormatAnnotationFormatterFactory() |
Modifier and Type | Method and Description |
---|---|
Set<Class<?>> |
getFieldTypes()
The types of fields that may be annotated with the <A> annotation.
|
Parser<Number> |
getParser(NumberFormat annotation,
Class<?> fieldType)
Get the Parser to parse a submitted value for a field of
fieldType
annotated with annotation . |
Printer<Number> |
getPrinter(NumberFormat annotation,
Class<?> fieldType)
Get the Printer to print the value of a field of
fieldType annotated with
annotation . |
resolveEmbeddedValue, setEmbeddedValueResolver
public NumberFormatAnnotationFormatterFactory()
public Set<Class<?>> getFieldTypes()
AnnotationFormatterFactory
getFieldTypes
in interface AnnotationFormatterFactory<NumberFormat>
public Printer<Number> getPrinter(NumberFormat annotation, 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<NumberFormat>
annotation
- the annotation instancefieldType
- the type of field that was annotatedpublic Parser<Number> getParser(NumberFormat annotation, 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<NumberFormat>
annotation
- the annotation instancefieldType
- the type of field that was annotated