|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.format.number.NumberFormatAnnotationFormatterFactory
public class NumberFormatAnnotationFormatterFactory
Formats fields annotated with the NumberFormat
annotation.
NumberFormat
Constructor Summary | |
---|---|
NumberFormatAnnotationFormatterFactory()
|
Method Summary | |
---|---|
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 . |
protected String |
resolveEmbeddedValue(String value)
|
void |
setEmbeddedValueResolver(StringValueResolver resolver)
Set the StringValueResolver to use for resolving embedded definition values. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public NumberFormatAnnotationFormatterFactory()
Method Detail |
---|
public final Set<Class<?>> getFieldTypes()
AnnotationFormatterFactory
getFieldTypes
in interface AnnotationFormatterFactory<NumberFormat>
public void setEmbeddedValueResolver(StringValueResolver resolver)
EmbeddedValueResolverAware
setEmbeddedValueResolver
in interface EmbeddedValueResolverAware
protected String resolveEmbeddedValue(String value)
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 coersion 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 annotated
public Parser<Number> getParser(NumberFormat annotation, Class<?> fieldType)
AnnotationFormatterFactory
fieldType
annotated with annotation
.
If the object the parser returns is not assignable to fieldType
, a coersion 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
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |