接口 AnnotationFormatterFactory<A extends Annotation>

    • 方法概要

      所有方法 实例方法 抽象方法 
      修饰符和类型方法说明
      Set<Class<?>>getFieldTypes()
      The types of fields that may be annotated with the <A> annotation.
      Parser<?>getParser​(A annotation, Class<?> fieldType)
      Get the Parser to parse a submitted value for a field of fieldType annotated with annotation.
      Printer<?>getPrinter​(A annotation, Class<?> fieldType)
      Get the Printer to print the value of a field of fieldType annotated with annotation.
    • 方法详细资料

      • getFieldTypes

        Set<Class<?>> getFieldTypes()
        The types of fields that may be annotated with the <A> annotation.
      • getPrinter

        Printer<?> getPrinter​(A annotation,
                              Class<?> fieldType)
        Get the Printer to print the value of a field of 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.

        参数:
        annotation - the annotation instance
        fieldType - the type of field that was annotated
        返回:
        the printer
      • getParser

        Parser<?> getParser​(A annotation,
                            Class<?> fieldType)
        Get the Parser to parse a submitted value for a field of 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.

        参数:
        annotation - the annotation instance
        fieldType - the type of field that was annotated
        返回:
        the parser