接口 AnnotationFormatterFactory<A extends Annotation>
- 类型参数:
A- the annotation type that should trigger formatting
- 所有已知实现类:
DateTimeFormatAnnotationFormatterFactory,Jsr310DateTimeFormatAnnotationFormatterFactory,Jsr354NumberFormatAnnotationFormatterFactory,NumberFormatAnnotationFormatterFactory
public interface AnnotationFormatterFactory<A extends Annotation>
A factory that creates formatters to format values of fields annotated with a particular
Annotation.
For example, a DateTimeFormatAnnotationFormatterFactory might create a formatter
that formats Date values set on fields annotated with @DateTimeFormat.
- 从以下版本开始:
- 4.0
- 作者:
- Keith Donald
-
方法概要
修饰符和类型方法说明The types of fields that may be annotated with the <A> annotation.Parser<?>Get the Parser to parse a submitted value for a field offieldTypeannotated withannotation.Printer<?>getPrinter(A annotation, Class<?> fieldType) Get the Printer to print the value of a field offieldTypeannotated withannotation.
-
方法详细资料
-
getFieldTypes
The types of fields that may be annotated with the <A> annotation. -
getPrinter
Get 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.- 参数:
annotation- the annotation instancefieldType- the type of field that was annotated- 返回:
- the printer
-
getParser
Get 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.- 参数:
annotation- the annotation instancefieldType- the type of field that was annotated- 返回:
- the parser
-