Interface Processor.Factory<A extends Annotation,T>

Type Parameters:
A - annotation type
T - handled value type
Enclosing interface:
Processor<V>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Processor.Factory<A extends Annotation,T>
Provider to, given an annotation instance and the type it's on, create a Processor.
Since:
4.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    make(A data, Type value)
    Create a new processor given the annotation and data type.
  • Method Details

    • make

      Processor<T> make(A data, Type value)
      Create a new processor given the annotation and data type.
      Parameters:
      data - annotation type on record field
      value - declared field type
      Returns:
      new processor
      Since:
      4.0.0