- java.lang.Object
-
- org.joor.Reflect
-
public class Reflect extends java.lang.ObjectA wrapper for anObjectorClassupon which reflective calls can be made.An example of using
Reflectis// Static import all reflection methods to decrease verbosity import static org.joor.Reflect.*; // Wrap an Object / Class / class name with the on() method: on("java.lang.String") // Invoke constructors using the create() method: .create("Hello World") // Invoke methods using the call() method: .call("toString") // Retrieve the wrapped object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classReflect.NULL
-
Field Summary
Fields Modifier and Type Field Description (package private) static java.lang.reflect.Constructor<java.lang.invoke.MethodHandles.Lookup>CACHED_LOOKUP_CONSTRUCTORprivate java.lang.ObjectobjectThe wrapped object.private java.lang.Class<?>typeThe type of the wrapped object.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static <T extends java.lang.reflect.AccessibleObject>
Taccessible(T accessible)Conveniently render anAccessibleObjectaccessible.<P> Pas(java.lang.Class<P> proxyType)Create a proxy for the wrapped object allowing to typesafely invoke methods on it using a custom interface.<P> Pas(java.lang.Class<P> proxyType, java.lang.Class<?>... additionalInterfaces)Create a proxy for the wrapped object allowing to typesafely invoke methods on it using a custom interface.Reflectcall(java.lang.String name)Call a method by its name.Reflectcall(java.lang.String name, java.lang.Object... args)Call a method by its name.static Reflectcompile(java.lang.String name, java.lang.String content)Compile a class at runtime and reflect on it.static Reflectcompile(java.lang.String name, java.lang.String content, CompileOptions options)Compile a class at runtime and reflect on it.Reflectcreate()Call a constructor.Reflectcreate(java.lang.Object... args)Call a constructor.booleanequals(java.lang.Object obj)private java.lang.reflect.MethodexactMethod(java.lang.String name, java.lang.Class<?>[] types)Searches a method with the exact same signature as desired.Reflectfield(java.lang.String name)Get a wrapped field.private java.lang.reflect.Fieldfield0(java.lang.String name)java.util.Map<java.lang.String,Reflect>fields()Get a Map containing field names and wrapped values for the fields' values.private static java.lang.Class<?>forName(java.lang.String name)Load a classprivate static java.lang.Class<?>forName(java.lang.String name, java.lang.ClassLoader classLoader)<T> Tget()Get the wrapped object<T> Tget(java.lang.String name)Get a field value.inthashCode()static <T> TinitValue(java.lang.Class<T> type)Get the initialisation or default value for any given type.private booleanisSimilarSignature(java.lang.reflect.Method possiblyMatchingMethod, java.lang.String desiredMethodName, java.lang.Class<?>[] desiredParamTypes)Determines if a method has a "similar" signature, especially if wrapping primitive argument types would result in an exactly matching signature.private booleanmatch(java.lang.Class<?>[] declaredTypes, java.lang.Class<?>[] actualTypes)Check whether two arrays of types match, converting primitive types to their corresponding wrappers.static Reflecton(java.lang.Class<?> clazz)Deprecated.[#78] 0.9.11, useonClass(Class)instead.private static Reflecton(java.lang.Class<?> type, java.lang.Object object)static Reflecton(java.lang.Object object)Wrap an object.private static Reflecton(java.lang.reflect.Constructor<?> constructor, java.lang.Object... args)Wrap an object created from a constructorprivate static Reflecton(java.lang.reflect.Method method, java.lang.Object object, java.lang.Object... args)Wrap an object returned from a methodstatic Reflecton(java.lang.String name)Deprecated.[#78] 0.9.11, useonClass(String)instead.static Reflecton(java.lang.String name, java.lang.ClassLoader classLoader)Deprecated.[#78] 0.9.11, useonClass(String, ClassLoader)instead.static ReflectonClass(java.lang.Class<?> clazz)Wrap a class.static ReflectonClass(java.lang.String name)Wrap a class name.static ReflectonClass(java.lang.String name, java.lang.ClassLoader classLoader)Wrap a class name, loading it via a given class loader.static voidprocess(java.lang.String name, java.lang.String content)Annotation-process a class at runtime.static voidprocess(java.lang.String name, java.lang.String content, CompileOptions options)Annotation-process a class at runtime.private static java.lang.Stringproperty(java.lang.String string)Get the POJO property name of an getter/setterReflectset(java.lang.String name, java.lang.Object value)Set a field value.private java.lang.reflect.MethodsimilarMethod(java.lang.String name, java.lang.Class<?>[] types)Searches a method with a similar signature as desired usingisSimilarSignature(java.lang.reflect.Method, String, Class[]).java.lang.StringtoString()java.lang.Class<?>type()Get the type of the wrapped object.private static java.lang.Class<?>[]types(java.lang.Object... values)Get an array of types for an array of objectsprivate static java.lang.Objectunwrap(java.lang.Object object)Unwrap an objectstatic <T> java.lang.Class<T>wrapper(java.lang.Class<T> type)Get a wrapper type for a primitive type, or the argument type itself, if it is not a primitive type.
-
-
-
Method Detail
-
compile
public static Reflect compile(java.lang.String name, java.lang.String content) throws ReflectException
Compile a class at runtime and reflect on it.For example:
Supplier<String> supplier = Reflect.compile("org.joor.Test", """ package org.joor; class Test implements java.util.function.Supplier<String> { public String get() { return "Hello World!"; } } """).create().get();- Parameters:
name- The qualified class namecontent- The source code for the class- Returns:
- A wrapped
Class - Throws:
ReflectException- if anything went wrong compiling the class.
-
compile
public static Reflect compile(java.lang.String name, java.lang.String content, CompileOptions options) throws ReflectException
Compile a class at runtime and reflect on it.For example:
Supplier<String> supplier = Reflect.compile("org.joor.Test", """ package org.joor; class Test implements java.util.function.Supplier<String> { public String get() { return "Hello World!"; } } """).create().get();- Parameters:
name- The qualified class namecontent- The source code for the classoptions- compiler options- Returns:
- A wrapped
Class - Throws:
ReflectException- if anything went wrong compiling the class.
-
process
public static void process(java.lang.String name, java.lang.String content) throws ReflectExceptionAnnotation-process a class at runtime.This works like
compile(String, String), but adds the-proc:onlyCompileOptionsand thus does not produce any compilation output.For example:
Supplier<String> supplier = Reflect.compile("org.joor.Test", """ package org.joor; @MyAnnotation class Test implements java.util.function.Supplier<String> { public String get() { return "Hello World!"; } } """).create().get();- Parameters:
name- The qualified class namecontent- The source code for the class- Throws:
ReflectException- if anything went wrong compiling the class.
-
process
public static void process(java.lang.String name, java.lang.String content, CompileOptions options) throws ReflectExceptionAnnotation-process a class at runtime.This works like
compile(String, String), but adds the-proc:onlyCompileOptionsand thus does not produce any compilation output.For example:
Supplier<String> supplier = Reflect.compile("org.joor.Test", """ package org.joor; @MyAnnotation class Test implements java.util.function.Supplier<String> { public String get() { return "Hello World!"; } } """).create().get();- Parameters:
name- The qualified class namecontent- The source code for the classoptions- compiler options- Throws:
ReflectException- if anything went wrong compiling the class.
-
on
@Deprecated public static Reflect on(java.lang.String name) throws ReflectException
Deprecated.[#78] 0.9.11, useonClass(String)instead.Wrap a class name.This is the same as calling
on(Class.forName(name))- Parameters:
name- A fully qualified class name- Returns:
- A wrapped class object, to be used for further reflection.
- Throws:
ReflectException- If any reflection exception occurred.- See Also:
onClass(Class)
-
on
@Deprecated public static Reflect on(java.lang.String name, java.lang.ClassLoader classLoader) throws ReflectException
Deprecated.[#78] 0.9.11, useonClass(String, ClassLoader)instead.Wrap a class name, loading it via a given class loader.This is the same as calling
on(Class.forName(name, classLoader))- Parameters:
name- A fully qualified class name.classLoader- The class loader in whose context the class should be loaded.- Returns:
- A wrapped class object, to be used for further reflection.
- Throws:
ReflectException- If any reflection exception occurred.- See Also:
onClass(Class)
-
on
@Deprecated public static Reflect on(java.lang.Class<?> clazz)
Deprecated.[#78] 0.9.11, useonClass(Class)instead.Wrap a class.Use this when you want to access static fields and methods on a
Classobject, or as a basis for constructing objects of that class usingcreate(Object...)- Parameters:
clazz- The class to be wrapped- Returns:
- A wrapped class object, to be used for further reflection.
-
onClass
public static Reflect onClass(java.lang.String name) throws ReflectException
Wrap a class name.This is the same as calling
onClass(Class.forName(name))- Parameters:
name- A fully qualified class name- Returns:
- A wrapped class object, to be used for further reflection.
- Throws:
ReflectException- If any reflection exception occurred.- See Also:
onClass(Class)
-
onClass
public static Reflect onClass(java.lang.String name, java.lang.ClassLoader classLoader) throws ReflectException
Wrap a class name, loading it via a given class loader.This is the same as calling
onClass(Class.forName(name, classLoader))- Parameters:
name- A fully qualified class name.classLoader- The class loader in whose context the class should be loaded.- Returns:
- A wrapped class object, to be used for further reflection.
- Throws:
ReflectException- If any reflection exception occurred.- See Also:
onClass(Class)
-
onClass
public static Reflect onClass(java.lang.Class<?> clazz)
Wrap a class.Use this when you want to access static fields and methods on a
Classobject, or as a basis for constructing objects of that class usingcreate(Object...)- Parameters:
clazz- The class to be wrapped- Returns:
- A wrapped class object, to be used for further reflection.
-
on
public static Reflect on(java.lang.Object object)
Wrap an object.Use this when you want to access instance fields and methods on any
Object- Parameters:
object- The object to be wrapped- Returns:
- A wrapped object, to be used for further reflection.
-
on
private static Reflect on(java.lang.Class<?> type, java.lang.Object object)
-
initValue
public static <T> T initValue(java.lang.Class<T> type)
Get the initialisation or default value for any given type.This returns:
nullfor reference types (including wrapper types)0for numeric primitive types (includingchar)falsefor thebooleanprimitive type.
-
accessible
public static <T extends java.lang.reflect.AccessibleObject> T accessible(T accessible)
Conveniently render anAccessibleObjectaccessible.To prevent
SecurityException, this is only done if the argument object and its declaring class are non-public.- Parameters:
accessible- The object to render accessible- Returns:
- The argument object rendered accessible
-
get
public <T> T get()
Get the wrapped object- Type Parameters:
T- A convenience generic parameter for automatic unsafe casting
-
set
public Reflect set(java.lang.String name, java.lang.Object value) throws ReflectException
Set a field value.This is roughly equivalent to
Field.set(Object, Object). If the wrapped object is aClass, then this will set a value to a static member field. If the wrapped object is any otherObject, then this will set a value to an instance member field.This method is also capable of setting the value of (static) final fields. This may be convenient in situations where no
SecurityManageris expected to prevent this, but do note that (especially static) final fields may already have been inlined by the javac and/or JIT and relevant code deleted from the runtime verison of your program, so setting these fields might not have any effect on your execution.For restrictions of usage regarding setting values on final fields check: http://stackoverflow.com/questions/3301635/change-private-static-final-field-using-java-reflection ... and http://pveentjer.blogspot.co.at/2017/01/final-static-boolean-jit.html
- Parameters:
name- The field namevalue- The new field value- Returns:
- The same wrapped object, to be used for further reflection.
- Throws:
ReflectException- If any reflection exception occurred.
-
get
public <T> T get(java.lang.String name) throws ReflectExceptionGet a field value.This is roughly equivalent to
Field.get(Object). If the wrapped object is aClass, then this will get a value from a static member field. If the wrapped object is any otherObject, then this will get a value from an instance member field.If you want to "navigate" to a wrapped version of the field, use
field(String)instead.- Parameters:
name- The field name- Returns:
- The field value
- Throws:
ReflectException- If any reflection exception occurred.- See Also:
field(String)
-
field
public Reflect field(java.lang.String name) throws ReflectException
Get a wrapped field.This is roughly equivalent to
Field.get(Object). If the wrapped object is aClass, then this will wrap a static member field. If the wrapped object is any otherObject, then this wrap an instance member field.- Parameters:
name- The field name- Returns:
- The wrapped field
- Throws:
ReflectException- If any reflection exception occurred.
-
field0
private java.lang.reflect.Field field0(java.lang.String name) throws ReflectException- Throws:
ReflectException
-
fields
public java.util.Map<java.lang.String,Reflect> fields()
Get a Map containing field names and wrapped values for the fields' values.If the wrapped object is a
Class, then this will return static fields. If the wrapped object is any otherObject, then this will return instance fields.These two calls are equivalent
on(object).field("myField"); on(object).fields().get("myField");- Returns:
- A map containing field names and wrapped values.
-
call
public Reflect call(java.lang.String name) throws ReflectException
Call a method by its name.This is a convenience method for calling
call(name, new Object[0])- Parameters:
name- The method name- Returns:
- The wrapped method result or the same wrapped object if the
method returns
void, to be used for further reflection. - Throws:
ReflectException- If any reflection exception occurred.- See Also:
call(String, Object...)
-
call
public Reflect call(java.lang.String name, java.lang.Object... args) throws ReflectException
Call a method by its name.This is roughly equivalent to
Method.invoke(Object, Object...). If the wrapped object is aClass, then this will invoke a static method. If the wrapped object is any otherObject, then this will invoke an instance method.Just like
Method.invoke(Object, Object...), this will try to wrap primitive types or unwrap primitive type wrappers if applicable. If several methods are applicable, by that rule, the first one encountered is called. i.e. when calling
The first of the following methods will be called:on(...).call("method", 1, 1);public void method(int param1, Integer param2); public void method(Integer param1, int param2); public void method(Number param1, Number param2); public void method(Number param1, Object param2); public void method(int param1, Object param2);The best matching method is searched for with the following strategy:
- public method with exact signature match in class hierarchy
- non-public method with exact signature match on declaring class
- public method with similar signature in class hierarchy
- non-public method with similar signature on declaring class
- Parameters:
name- The method nameargs- The method arguments- Returns:
- The wrapped method result or the same wrapped object if the
method returns
void, to be used for further reflection. - Throws:
ReflectException- If any reflection exception occurred.
-
exactMethod
private java.lang.reflect.Method exactMethod(java.lang.String name, java.lang.Class<?>[] types) throws java.lang.NoSuchMethodExceptionSearches a method with the exact same signature as desired.If a public method is found in the class hierarchy, this method is returned. Otherwise a private method with the exact same signature is returned. If no exact match could be found, we let the
NoSuchMethodExceptionpass through.- Throws:
java.lang.NoSuchMethodException
-
similarMethod
private java.lang.reflect.Method similarMethod(java.lang.String name, java.lang.Class<?>[] types) throws java.lang.NoSuchMethodExceptionSearches a method with a similar signature as desired usingisSimilarSignature(java.lang.reflect.Method, String, Class[]).First public methods are searched in the class hierarchy, then private methods on the declaring class. If a method could be found, it is returned, otherwise a
NoSuchMethodExceptionis thrown.- Throws:
java.lang.NoSuchMethodException
-
isSimilarSignature
private boolean isSimilarSignature(java.lang.reflect.Method possiblyMatchingMethod, java.lang.String desiredMethodName, java.lang.Class<?>[] desiredParamTypes)Determines if a method has a "similar" signature, especially if wrapping primitive argument types would result in an exactly matching signature.
-
create
public Reflect create() throws ReflectException
Call a constructor.This is a convenience method for calling
create(new Object[0])- Returns:
- The wrapped new object, to be used for further reflection.
- Throws:
ReflectException- If any reflection exception occurred.- See Also:
create(Object...)
-
create
public Reflect create(java.lang.Object... args) throws ReflectException
Call a constructor.This is roughly equivalent to
Constructor.newInstance(Object...). If the wrapped object is aClass, then this will create a new object of that class. If the wrapped object is any otherObject, then this will create a new object of the same type.Just like
Constructor.newInstance(Object...), this will try to wrap primitive types or unwrap primitive type wrappers if applicable. If several constructors are applicable, by that rule, the first one encountered is called. i.e. when calling
The first of the following constructors will be applied:on(C.class).create(1, 1);public C(int param1, Integer param2); public C(Integer param1, int param2); public C(Number param1, Number param2); public C(Number param1, Object param2); public C(int param1, Object param2);- Parameters:
args- The constructor arguments- Returns:
- The wrapped new object, to be used for further reflection.
- Throws:
ReflectException- If any reflection exception occurred.
-
as
public <P> P as(java.lang.Class<P> proxyType)
Create a proxy for the wrapped object allowing to typesafely invoke methods on it using a custom interface.- Parameters:
proxyType- The interface type that is implemented by the proxy- Returns:
- A proxy for the wrapped object
-
as
public <P> P as(java.lang.Class<P> proxyType, java.lang.Class<?>... additionalInterfaces)Create a proxy for the wrapped object allowing to typesafely invoke methods on it using a custom interface.- Parameters:
proxyType- The interface type that is implemented by the proxyadditionalInterfaces- Additional interfaces that are implemented by the proxy- Returns:
- A proxy for the wrapped object
-
property
private static java.lang.String property(java.lang.String string)
Get the POJO property name of an getter/setter
-
match
private boolean match(java.lang.Class<?>[] declaredTypes, java.lang.Class<?>[] actualTypes)Check whether two arrays of types match, converting primitive types to their corresponding wrappers.
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
on
private static Reflect on(java.lang.reflect.Constructor<?> constructor, java.lang.Object... args) throws ReflectException
Wrap an object created from a constructor- Throws:
ReflectException
-
on
private static Reflect on(java.lang.reflect.Method method, java.lang.Object object, java.lang.Object... args) throws ReflectException
Wrap an object returned from a method- Throws:
ReflectException
-
unwrap
private static java.lang.Object unwrap(java.lang.Object object)
Unwrap an object
-
types
private static java.lang.Class<?>[] types(java.lang.Object... values)
Get an array of types for an array of objects- See Also:
Object.getClass()
-
forName
private static java.lang.Class<?> forName(java.lang.String name) throws ReflectExceptionLoad a class- Throws:
ReflectException- See Also:
Class.forName(String)
-
forName
private static java.lang.Class<?> forName(java.lang.String name, java.lang.ClassLoader classLoader) throws ReflectException- Throws:
ReflectException
-
type
public java.lang.Class<?> type()
Get the type of the wrapped object.- See Also:
Object.getClass()
-
wrapper
public static <T> java.lang.Class<T> wrapper(java.lang.Class<T> type)
Get a wrapper type for a primitive type, or the argument type itself, if it is not a primitive type.
-
-