Uses of Class
org.jooq.tools.reflect.Reflect
-
Packages that use Reflect Package Description org.jooq.tools.reflect Theorg.jooq.tools.reflect
package contains parts of jOOR. -
-
Uses of Reflect in org.jooq.tools.reflect
Methods in org.jooq.tools.reflect that return Reflect Modifier and Type Method Description Reflect
Reflect. call(String name)
Call a method by its name.Reflect
Reflect. call(String name, Object... args)
Call a method by its name.static Reflect
Reflect. compile(String name, String content)
Compile a class at runtime and reflect on it.static Reflect
Reflect. compile(String name, String content, CompileOptions options)
Compile a class at runtime and reflect on it.Reflect
Reflect. create()
Call a constructor.Reflect
Reflect. create(Object... args)
Call a constructor.Reflect
Reflect. field(String name)
Get a wrapped field.static Reflect
Reflect. on(Class<?> clazz)
Deprecated.[#78] 0.9.11, useonClass(Class)
instead.static Reflect
Reflect. on(Object object)
Wrap an object.static Reflect
Reflect. on(String name)
Deprecated.[#78] 0.9.11, useonClass(String)
instead.static Reflect
Reflect. on(String name, ClassLoader classLoader)
Deprecated.[#78] 0.9.11, useonClass(String, ClassLoader)
instead.static Reflect
Reflect. onClass(Class<?> clazz)
Wrap a class.static Reflect
Reflect. onClass(String name)
Wrap a class name.static Reflect
Reflect. onClass(String name, ClassLoader classLoader)
Wrap a class name, loading it via a given class loader.Reflect
Reflect. set(String name, Object value)
Set a field value.Methods in org.jooq.tools.reflect that return types with arguments of type Reflect Modifier and Type Method Description Map<String,Reflect>
Reflect. fields()
Get a Map containing field names and wrapped values for the fields' values.
-