Package com.bencodez.advancedcore.nms
Class ReflectionUtils
java.lang.Object
com.bencodez.advancedcore.nms.ReflectionUtils
Deprecated.
A collection of Reflection Methods that return null rather than throwing
Exceptions for cleaner code
- Author:
- Florian
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ObjectconstructObject(Constructor<?> constructor, Object... args) Deprecated.static Class<?> getClassForName(String name) Deprecated.Class<?> getClazz()Deprecated.Constructor<?> getConstructor(Class<?>... params) Deprecated.getFieldDeclared(String name) Deprecated.static ObjectgetFieldValue(Field field, Object object) Deprecated.getMethodDeclared(String name, Class<?>... params) Deprecated.Deprecated.getSuperClassField(String name) Deprecated.getSuperClassMethod(String name, Class<?>... params) Deprecated.static ObjectinvokeMethod(Method method, Object object, Object... args) Deprecated.static intremoveModifier(Object fieldOrMethod, int modifierToRemove) Deprecated.static ObjectDeprecated.Sets the value of the specifiedFieldstatic intsetModifiers(Object fieldOrMethod, int newMods) Deprecated.Sets the modifiers of the specified Field or Method
-
Constructor Details
-
ReflectionUtils
Deprecated.
-
-
Method Details
-
constructObject
Deprecated. -
getClassForName
Deprecated. -
getFieldValue
Deprecated. -
invokeMethod
Deprecated. -
removeModifier
Deprecated. -
setField
Deprecated.Sets the value of the specifiedField- Parameters:
field- The field who's value should be changedobject- object from which the represented field's value is to be extractednewValue- the new value for the field ofobjectbeing modified- Returns:
- The old value of this Field
-
setModifiers
Deprecated.Sets the modifiers of the specified Field or Method- Parameters:
fieldOrMethod- The object that represents the Field / MethodnewMods- the new modifiers- Returns:
- the old modifiers
-
getClazz
Deprecated. -
getConstructor
Deprecated. -
getFieldDeclared
Deprecated. -
getMethodDeclared
Deprecated. -
getObject
Deprecated. -
getSuperClassField
Deprecated. -
getSuperClassMethod
Deprecated.
-