Interface CriteriaResolver<T,A>

All Known Subinterfaces:
NodeInfoResolver, PortSchemeResolver<T>
All Known Implementing Classes:
DefaultNodeInfoResolver, DefaultPortSchemeResolver
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 interface CriteriaResolver<T,A>
CriteriaResolver.java Interface to help resolve from an argument A to the typed object T. Keeping this as the qualified class instead of using Function so that in the future if all criteria resolvers were to be fetched to register using reflections et. al, there is a qualified naming.
  • Method Summary

    Modifier and Type
    Method
    Description
    resolve(A args)
     
  • Method Details

    • resolve

      T resolve(A args)