TypeSolverBuilder
TypeSolverBuilder was created with the objective of simplifying the process of creating new type solved. Instead of invoking the constructor directly, the user can build it using the builder pattern.
Example 1: Solve JRE types: new TypeSolverBuilder()
.withCurrentJRE()
.build()
Content copied to clipboard
new TypeSolverBuilder()
.withCurrentJRE()
.withJAR("foo.jar")
.build()
Content copied to clipboard
Author
4everTheOne
Functions
Link copied to clipboard
Convert the current build into a valid TypeSolver.
Link copied to clipboard
Append a costum type solver to the build.
Link copied to clipboard
Allow the type solver to resolve types that are defined in a AAR file.
Link copied to clipboard
Allow the type solver to resolve types using the provided ClassLoader.
Link copied to clipboard
Allow the type solver to resolve types that are defined in the current ClassLoader.
Link copied to clipboard
Allow the type solver to resolve types that are defined in the current Java Runtime Environment (JRE).
Link copied to clipboard
Allow the type solver to resolve types that are defined in a JAR file.
Link copied to clipboard
Allow the type solver to resolve types using external source code.