public final class ReflectionTools
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static org.apache.log4j.Logger |
log |
static sun.misc.Unsafe |
unsafe
Holds the Unsafe instance obtained using the getUnsafe() method.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.Object |
atomicGetAndSetObject(java.lang.Object o,
java.lang.String fieldName,
java.lang.Object newValue)
Uses the Unsafe API to atomically initialize a field to the given value,
returning the previous value.
|
static java.lang.Class |
findNextClosestSuperClass(java.lang.Class clazz,
java.util.Set<java.lang.Class> potentialSuperClazzes)
finds and returns the next closes superclass for a class from a given set of potential super classes
|
static java.lang.Class |
forceInit(java.lang.Class clazz)
Loads the passed Class and initializes it.
|
static java.lang.Class[] |
getAllInterfaces(java.lang.Class c)
Returns an
Array with all interfaces implemented by the
given Class and its parents
just a wrapper for getAllInterfaces(c = Class, set = Set) |
static java.lang.Class |
getClass(java.lang.String cname)
Convenience version of the standard Java API method which only throws (unchecked)
RuntimeExceptions . |
static java.lang.Class |
getClass(java.lang.String cname,
java.lang.String exceptionText) |
static java.lang.reflect.Constructor |
getConstructor(java.lang.Class clazz)
Convenience version of the standard Java API method which only throws (unchecked)
RuntimeExceptions . |
static java.lang.reflect.Constructor |
getConstructor(java.lang.Class clazz,
java.lang.Class[] types) |
static java.lang.reflect.Constructor |
getConstructor(java.lang.Class clazz,
java.lang.Class[] types,
java.lang.String exceptionText) |
static int |
getDistanceToJavaLangObject(java.lang.Class aClass)
Computes the distance of a given class from the
java.lang.Object class in its inheritance hierarchy. |
static int |
getDistanceToSuperClass(java.lang.Class clazz,
java.lang.Class superClazz)
Computes the distance of a given class from the given super class in its inheritance hierarchy.
|
static java.lang.Object |
getField(java.lang.Class clazz,
java.lang.String fname,
java.lang.Object o)
Returns the content of the field with the specified name for the passed class in the passed Object.
|
static java.lang.Object |
getField(java.lang.Class clazz,
java.lang.String fname,
java.lang.Object o,
boolean force) |
static java.lang.Object |
getField(java.lang.Class clazz,
java.lang.String fname,
java.lang.Object o,
boolean force,
java.lang.String exceptionText) |
static long |
getFieldOffset(java.lang.Class cl,
java.lang.String name)
Returns the offset of the field with the specified name for the passed class.
|
static long |
getFieldOffset(java.lang.Class cl,
java.lang.String name,
boolean nothrow) |
static java.lang.reflect.Method |
getMethod(java.lang.Class clazz,
java.lang.String mname)
Convenience version of the standard Java API method which only throws (unchecked)
RuntimeExceptions . |
static java.lang.reflect.Method |
getMethod(java.lang.Class clazz,
java.lang.String mname,
java.lang.Class[] types) |
static java.lang.reflect.Method |
getMethod(java.lang.Class clazz,
java.lang.String mname,
java.lang.Class[] types,
boolean force) |
static java.lang.reflect.Method |
getMethod(java.lang.Class clazz,
java.lang.String mname,
java.lang.Class[] types,
boolean force,
java.lang.String exceptionText) |
static java.lang.reflect.Method |
getMethod(java.lang.Object o,
java.lang.String mname)
Convenience version of the standard Java API method which only throws (unchecked)
RuntimeExceptions . |
static java.lang.reflect.Method |
getMethod(java.lang.Object o,
java.lang.String mname,
java.lang.Class[] types) |
static java.lang.reflect.Method |
getMethod(java.lang.Object o,
java.lang.String mname,
java.lang.Class[] types,
boolean force) |
static java.lang.reflect.Method |
getMethod(java.lang.Object o,
java.lang.String mname,
java.lang.Class[] types,
boolean force,
java.lang.String exceptionText) |
static java.util.List |
getMethodsAnnotatedWith(java.lang.Class clazz,
java.lang.Class annotation)
Return all methods for a passed class, that were annotated with the respective annotation class.
|
static java.util.List |
getMethodsAnnotatedWith(java.lang.Class clazz,
java.lang.Class annotation,
boolean traverseClassHierarchy) |
static java.util.List |
getMethodsAnnotatedWith(java.lang.Object o,
java.lang.Class annotation)
Return all methods for the class of the passed object, that were annotated with the respective annotation class.
|
static java.util.List |
getMethodsAnnotatedWith(java.lang.Object o,
java.lang.Class annotation,
boolean traverseClassHierarchy) |
static java.lang.Object |
getStaticField(java.lang.Class clazz,
java.lang.String fname)
Returns the value of the static field with the specified name for the passed class.
|
static java.lang.Object |
getStaticField(java.lang.Class clazz,
java.lang.String fname,
boolean force) |
static java.lang.Object |
getStaticField(java.lang.Class clazz,
java.lang.String fname,
boolean force,
java.lang.String exceptionText) |
static java.lang.Object |
invoke(java.lang.reflect.Method m,
java.lang.Object o)
Invokes the specified method on the given object with the provided parameters.
|
static java.lang.Object |
invoke(java.lang.reflect.Method m,
java.lang.Object o,
java.lang.Object[] parms) |
static java.lang.Object |
invoke(java.lang.reflect.Method m,
java.lang.Object o,
java.lang.Object[] parms,
java.lang.String exceptionText) |
static java.lang.Object |
invoke(java.lang.Object lso,
java.lang.String methodName)
Invokes the specified method on the given object with the provided parameters.
|
static java.lang.Object |
invoke(java.lang.Object lso,
java.lang.String methodName,
java.lang.Class[] types) |
static java.lang.Object |
invoke(java.lang.Object lso,
java.lang.String methodName,
java.lang.Class[] types,
java.lang.Object[] parms) |
static java.lang.Object |
invokeStatic(java.lang.Class clazz,
java.lang.String methodName)
Invokes the specified static method on the given class with the provided parameters.
|
static java.lang.Object |
invokeStatic(java.lang.Class clazz,
java.lang.String methodName,
java.lang.Class[] types) |
static java.lang.Object |
invokeStatic(java.lang.Class clazz,
java.lang.String methodName,
java.lang.Class[] types,
java.lang.Object[] parms) |
static boolean |
isAssignableFromAny(java.lang.Class needle,
java.util.Collection<java.lang.Class> classes)
Returns true if the passed class is assignable from any of the classes in the passed collection.
|
static java.lang.Object |
newInstance(java.lang.Class clazz)
Creates a new instance of the specified class using the provided parameter types and parameters.
|
static java.lang.Object |
newInstance(java.lang.Class clazz,
java.lang.Class[] types) |
static java.lang.Object |
newInstance(java.lang.Class clazz,
java.lang.Class[] types,
java.lang.Object[] parms) |
static java.lang.Object |
newInstance(java.lang.Class clazz,
java.lang.Class[] types,
java.lang.Object[] parms,
java.lang.String exceptionText) |
static java.lang.Object |
newInstance(java.lang.reflect.Constructor c)
Creates a new object using the provided constructor and parameters.
|
static java.lang.Object |
newInstance(java.lang.reflect.Constructor c,
java.lang.Object[] parms) |
static java.lang.Object |
newInstance(java.lang.reflect.Constructor c,
java.lang.Object[] parms,
java.lang.String exceptionText) |
static java.lang.Object |
newInstance(java.lang.String cname)
Creates a new instance of the specified class name using the provided parameter types and parameters.
|
static java.lang.Object |
newInstance(java.lang.String cname,
java.lang.Class[] types) |
static java.lang.Object |
newInstance(java.lang.String cname,
java.lang.Class[] types,
java.lang.Object[] parms) |
static java.lang.Object |
newInstance(java.lang.String cname,
java.lang.Class[] types,
java.lang.Object[] parms,
java.lang.String exceptionText) |
static void |
setField(java.lang.Class clazz,
java.lang.String fname,
java.lang.Object o,
java.lang.Object value)
Sets the value of the field with the specified name for the passed class in the passed Object.
|
static void |
setField(java.lang.Class clazz,
java.lang.String fname,
java.lang.Object o,
java.lang.Object value,
boolean force) |
static void |
setField(java.lang.Class clazz,
java.lang.String fname,
java.lang.Object o,
java.lang.Object value,
boolean force,
java.lang.String exceptionText) |
public static final org.apache.log4j.Logger log
public static final sun.misc.Unsafe unsafe
public static boolean isAssignableFromAny(java.lang.Class needle, java.util.Collection<java.lang.Class> classes)
needle
- The Class to check assignability.classes
- The Collection of classes to check against.public static java.lang.Class getClass(java.lang.String cname)
RuntimeExceptions
.cname
- The name of the class.exceptionText
- The exception text to include in the RuntimeException (optional).public static java.lang.Class getClass(java.lang.String cname, java.lang.String exceptionText)
public static java.lang.reflect.Constructor getConstructor(java.lang.Class clazz)
RuntimeExceptions
.clazz
- The Class object.types
- The parameter types.exceptionText
- The exception text to include in the RuntimeException (optional).public static java.lang.reflect.Constructor getConstructor(java.lang.Class clazz, java.lang.Class[] types)
public static java.lang.reflect.Constructor getConstructor(java.lang.Class clazz, java.lang.Class[] types, java.lang.String exceptionText)
public static java.lang.reflect.Method getMethod(java.lang.Class clazz, java.lang.String mname)
RuntimeExceptions
.clazz
- The Class object.mname
- The name of the method.types
- The parameter types.force
- If true, the method is forced accessible.exceptionText
- The exception text to include in the RuntimeException (optional).public static java.lang.reflect.Method getMethod(java.lang.Class clazz, java.lang.String mname, java.lang.Class[] types)
public static java.lang.reflect.Method getMethod(java.lang.Class clazz, java.lang.String mname, java.lang.Class[] types, boolean force)
public static java.lang.reflect.Method getMethod(java.lang.Class clazz, java.lang.String mname, java.lang.Class[] types, boolean force, java.lang.String exceptionText)
public static java.lang.reflect.Method getMethod(java.lang.Object o, java.lang.String mname)
RuntimeExceptions
.o
- The object instance.mname
- The name of the method.types
- The parameter types.force
- If true, the method is forced accessible.exceptionText
- The exception text to include in the RuntimeException (optional).public static java.lang.reflect.Method getMethod(java.lang.Object o, java.lang.String mname, java.lang.Class[] types)
public static java.lang.reflect.Method getMethod(java.lang.Object o, java.lang.String mname, java.lang.Class[] types, boolean force)
public static java.lang.reflect.Method getMethod(java.lang.Object o, java.lang.String mname, java.lang.Class[] types, boolean force, java.lang.String exceptionText)
public static java.util.List getMethodsAnnotatedWith(java.lang.Class clazz, java.lang.Class annotation)
clazz
- The class that will be checked for methods.annotation
- The annotation class. If a method has the respective annotation it is returned.traverseClassHierarchy
- If true, work your way up the class hierarchy an check all classes for the respective annotation.
If false, only check the passed class.public static java.util.List getMethodsAnnotatedWith(java.lang.Class clazz, java.lang.Class annotation, boolean traverseClassHierarchy)
public static java.util.List getMethodsAnnotatedWith(java.lang.Object o, java.lang.Class annotation)
o
- The object to get the class of, that will be checked for methods.annotation
- The annotation class. If a method has the respective annotation it is returned.traverseClassHierarchy
- If true, work your way up the class hierarchy an check all classes for the respective annotation.
If false, only check the passed class.public static java.util.List getMethodsAnnotatedWith(java.lang.Object o, java.lang.Class annotation, boolean traverseClassHierarchy)
public static java.lang.Object getField(java.lang.Class clazz, java.lang.String fname, java.lang.Object o)
clazz
- The Class object.fname
- The name of the field.o
- The object instance (can be null for static fields).force
- If true, only declared fields are searched.exceptionText
- The exception text to include in the RuntimeException (optional).public static java.lang.Object getField(java.lang.Class clazz, java.lang.String fname, java.lang.Object o, boolean force)
public static java.lang.Object getField(java.lang.Class clazz, java.lang.String fname, java.lang.Object o, boolean force, java.lang.String exceptionText)
public static void setField(java.lang.Class clazz, java.lang.String fname, java.lang.Object o, java.lang.Object value)
clazz
- The Class object.fname
- The name of the field.o
- The object instance (can be null for static fields).value
- The value to set.force
- If true, modification of final fields is allowed.
If false, only declared fields are modified.exceptionText
- The exception text to include in the RuntimeException (optional).public static void setField(java.lang.Class clazz, java.lang.String fname, java.lang.Object o, java.lang.Object value, boolean force)
public static void setField(java.lang.Class clazz, java.lang.String fname, java.lang.Object o, java.lang.Object value, boolean force, java.lang.String exceptionText)
public static java.lang.Object getStaticField(java.lang.Class clazz, java.lang.String fname)
clazz
- The Class object.fname
- The name of the field.force
- If true, access to final fields is allowed.
If false, only declared fields are accessed.exceptionText
- The exception text to include in the RuntimeException (optional).public static java.lang.Object getStaticField(java.lang.Class clazz, java.lang.String fname, boolean force)
public static java.lang.Object getStaticField(java.lang.Class clazz, java.lang.String fname, boolean force, java.lang.String exceptionText)
public static long getFieldOffset(java.lang.Class cl, java.lang.String name)
cl
- The Class object.name
- The name of the field.nothrow
- If true, no exception is thrown if the field is not found.public static long getFieldOffset(java.lang.Class cl, java.lang.String name, boolean nothrow)
public static java.lang.Object atomicGetAndSetObject(java.lang.Object o, java.lang.String fieldName, java.lang.Object newValue)
o
- object/array to update the field/element infieldName
- name of the field to be setnewValue
- new valuepublic static java.lang.Object newInstance(java.lang.reflect.Constructor c)
c
- The Constructor object.parms
- The parameters for the constructor.exceptionText
- The exception text to include in the RuntimeException (optional).public static java.lang.Object newInstance(java.lang.reflect.Constructor c, java.lang.Object[] parms)
public static java.lang.Object newInstance(java.lang.reflect.Constructor c, java.lang.Object[] parms, java.lang.String exceptionText)
public static java.lang.Object newInstance(java.lang.String cname)
cname
- The name of the class.types
- The parameter types for the constructor.parms
- The parameters for the constructor.exceptionText
- The exception text to include in the RuntimeException (optional).public static java.lang.Object newInstance(java.lang.String cname, java.lang.Class[] types)
public static java.lang.Object newInstance(java.lang.String cname, java.lang.Class[] types, java.lang.Object[] parms)
public static java.lang.Object newInstance(java.lang.String cname, java.lang.Class[] types, java.lang.Object[] parms, java.lang.String exceptionText)
public static java.lang.Object newInstance(java.lang.Class clazz)
clazz
- The Class object.types
- The parameter types for the constructor.parms
- The parameters for the constructor.exceptionText
- The exception text to include in the RuntimeException (optional).public static java.lang.Object newInstance(java.lang.Class clazz, java.lang.Class[] types)
public static java.lang.Object newInstance(java.lang.Class clazz, java.lang.Class[] types, java.lang.Object[] parms)
public static java.lang.Object newInstance(java.lang.Class clazz, java.lang.Class[] types, java.lang.Object[] parms, java.lang.String exceptionText)
public static java.lang.Object invoke(java.lang.reflect.Method m, java.lang.Object o)
m
- The Method object.o
- The object on which to invoke the method.parms
- The parameters for the method.exceptionText
- The exception text to include in the RuntimeException (optional).public static java.lang.Object invoke(java.lang.reflect.Method m, java.lang.Object o, java.lang.Object[] parms)
public static java.lang.Object invoke(java.lang.reflect.Method m, java.lang.Object o, java.lang.Object[] parms, java.lang.String exceptionText)
public static java.lang.Object invoke(java.lang.Object lso, java.lang.String methodName)
lso
- The object on which to invoke the method.methodName
- The name of the method.types
- The parameter types for the method.parms
- The parameters for the method.public static java.lang.Object invoke(java.lang.Object lso, java.lang.String methodName, java.lang.Class[] types)
public static java.lang.Object invoke(java.lang.Object lso, java.lang.String methodName, java.lang.Class[] types, java.lang.Object[] parms)
public static java.lang.Object invokeStatic(java.lang.Class clazz, java.lang.String methodName)
clazz
- The Class object.methodName
- The name of the method.types
- The parameter types for the method.parms
- The parameters for the method.public static java.lang.Object invokeStatic(java.lang.Class clazz, java.lang.String methodName, java.lang.Class[] types)
public static java.lang.Object invokeStatic(java.lang.Class clazz, java.lang.String methodName, java.lang.Class[] types, java.lang.Object[] parms)
public static java.lang.Class forceInit(java.lang.Class clazz)
clazz
- The Class object to force initialization of.public static java.lang.Class[] getAllInterfaces(java.lang.Class c)
Array
with all interfaces implemented by the
given Class
and its parents
just a wrapper for getAllInterfaces(c = Class, set = Set)c
- the Class
to get the interfaces forpublic static int getDistanceToJavaLangObject(java.lang.Class aClass)
java.lang.Object
class in its inheritance hierarchy.
The method traverses the inheritance chain of the specified class, counting the number of steps required
to reach the java.lang.Object
class. The distance is defined as the number of superclass links
from the given class to java.lang.Object
. The method returns the count of these steps.
For example, if the specified class directly extends java.lang.Object
, the distance will be 1.
If the specified class extends another class which in turn extends java.lang.Object
, the distance will be 2, and so on.
aClass
- the class for which the distance to java.lang.Object
is to be calculated.
If null
is passed, the method returns 0.java.lang.Object
.public static int getDistanceToSuperClass(java.lang.Class clazz, java.lang.Class superClazz)
The method traverses the inheritance chain of the specified class, counting the number of steps required to reach the given super class. The distance is defined as the number of superclass links from the given class to the given super class. The method returns the count of these steps. If the provided class and super class are unrelated, -1 is returned.
For example, if the specified class directly extends the super class, the distance will be 1. If the specified class extends another class which in turn extends the super class, the distance will be 2, and so on.
clazz
- the class for which the distance to the given super class is to be calculated.
If null
is passed, the method returns 0.
If the given class and super class are unrelated, the method returns -1.superClazz
- the super clazz to use as an upper boundary for the calculation of steps.public static java.lang.Class findNextClosestSuperClass(java.lang.Class clazz, java.util.Set<java.lang.Class> potentialSuperClazzes)
clazz
- potentialSuperClazzes
- Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.