ReflectionTypeSolver

constructor(classFilter: Predicate<String>)(source)

Parameters

classFilter

a name-based filter indicating which types to resolve. Similarily to ReflectionTypeSolver, this allows you to specify "I need to resolve certain classes (like the Java standard library), and whatever is available on the classpath is fine.".

See also


constructor(jreOnly: Boolean)(source)

Parameters

jreOnly

if true, will only resolve types from the java or javax packages. This is an easy way to say "I need a JRE to solve classes, and the one that is currently running is fine." If false, will resolve any kind of type.


constructor()(source)

Resolves classes from the JRE that is currently running. (It calls the other constructor with "true".)