Interface ConstructorResolver
- All Known Implementing Classes:
- ReflectiveConstructorResolver
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A constructor resolver attempts to locate a constructor and returns a
ConstructorExecutor that can be used to invoke that constructor.
The ConstructorExecutor will be cached, but if it becomes stale the
resolvers will be called again.
- Since:
- 3.0
- Author:
- Andy Clement, Sam Brannen
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionresolve(EvaluationContext context, String typeName, List<TypeDescriptor> argumentTypes) Within the supplied context, resolve a suitable constructor on the supplied type that can handle the specified arguments.
- 
Method Details- 
resolve@Nullable ConstructorExecutor resolve(EvaluationContext context, String typeName, List<TypeDescriptor> argumentTypes) throws AccessException Within the supplied context, resolve a suitable constructor on the supplied type that can handle the specified arguments.Returns a ConstructorExecutorthat can be used to invoke that constructor (ornullif no constructor could be found).- Parameters:
- context- the current evaluation context
- typeName- the fully-qualified name of the type upon which to look for the constructor
- argumentTypes- the types of arguments that the constructor must be able to handle
- Returns:
- a ConstructorExecutorthat can invoke the constructor, ornullif the constructor cannot be found
- Throws:
- AccessException
 
 
-