Package Summary Overview Summary |
class:Class [NONE] |
|
|
method:toGenericString() [NONE] |
|
|
method:forName(java.lang.String) [CHANGED] |
||||
|
method:forName(java.lang.String,boolean,java.lang.ClassLoader) [CHANGED] |
||||
|
method:forName(java.lang.Module,java.lang.String) [CHANGED] |
||||
|
method:newInstance() [NONE] |
|
|
method:isInstance(java.lang.Object) [NONE] |
|
|
method:isAssignableFrom(java.lang.Class) [NONE] |
|
|
method:isInterface() [NONE] |
|
|
method:isArray() [NONE] |
|
|
method:isPrimitive() [NONE] |
|
|
method:isAnnotation() [NONE] |
|
|
method:isSynthetic() [NONE] |
|
|
method:getName() [CHANGED] |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
method:getClassLoader() [NONE] |
|
|
method:getModule() [NONE] |
|
|
method:getTypeParameters() [NONE] |
|
|
method:getSuperclass() [NONE] |
|
|
method:getGenericSuperclass() [NONE] |
|
|
method:getPackage() [NONE] |
|
|
method:getPackageName() [NONE] |
|
|
method:getInterfaces() [NONE] |
|
|
method:getGenericInterfaces() [NONE] |
|
|
method:getComponentType() [NONE] |
|
|
method:getModifiers() [NONE] |
|
|
method:accessFlags() [NONE] |
|
|
method:getSigners() [NONE] |
|
|
method:getEnclosingMethod() [NONE] |
|
|
method:getEnclosingConstructor() [NONE] |
|
|
method:getDeclaringClass() [NONE] |
|
|
method:getEnclosingClass() [NONE] |
|
|
method:getSimpleName() [NONE] |
|
|
method:getTypeName() [NONE] |
|
|
method:getCanonicalName() [NONE] |
|
|
method:isUnnamedClass() [NONE] |
|
|
method:isAnonymousClass() [NONE] |
|
|
method:isLocalClass() [NONE] |
|
|
method:isMemberClass() [NONE] |
|
|
method:getClasses() [NONE] |
|
|
method:getFields() [NONE] |
|
|
method:getMethods() [NONE] |
|
|
method:getConstructors() [NONE] |
|
|
method:getField(java.lang.String) [NONE] |
|
|
method:getMethod(java.lang.String,java.lang.Class...) [NONE] |
|
|
method:getConstructor(java.lang.Class...) [NONE] |
|
|
method:getDeclaredClasses() [NONE] |
|
|
method:getDeclaredFields() [NONE] |
|
|
method:getRecordComponents() [NONE] |
|
|
method:getDeclaredMethods() [NONE] |
|
|
method:getDeclaredConstructors() [NONE] |
|
|
method:getDeclaredField(java.lang.String) [NONE] |
|
|
method:getDeclaredMethod(java.lang.String,java.lang.Class...) [NONE] |
|
|
method:getDeclaredConstructor(java.lang.Class...) [NONE] |
|
|
method:getResourceAsStream(java.lang.String) [NONE] |
|
|
method:getResource(java.lang.String) [NONE] |
|
|
method:getProtectionDomain() [NONE] |
|
|
method:desiredAssertionStatus() [NONE] |
|
|
method:isEnum() [NONE] |
|
|
method:isRecord() [NONE] |
|
|
method:getEnumConstants() [NONE] |
|
|
method:cast(java.lang.Object) [NONE] |
|
|
method:asSubclass(java.lang.Class) [NONE] |
|
|
method:getAnnotation(java.lang.Class) [NONE] |
|
|
method:isAnnotationPresent(java.lang.Class) [NONE] |
|
|
method:getAnnotationsByType(java.lang.Class) [NONE] |
|
|
method:getAnnotations() [NONE] |
|
|
method:getDeclaredAnnotation(java.lang.Class) [NONE] |
|
|
method:getDeclaredAnnotationsByType(java.lang.Class) [NONE] |
|
|
method:getDeclaredAnnotations() [NONE] |
|
|
method:getAnnotatedSuperclass() [NONE] |
|
|
method:getAnnotatedInterfaces() [NONE] |
|
|
method:getNestHost() [NONE] |
|
|
method:isNestmateOf(java.lang.Class) [NONE] |
|
|
method:getNestMembers() [NONE] |
|
|
method:descriptorString() [NONE] |
|
|
method:componentType() [NONE] |
|
|
method:arrayType() [NONE] |
|
|
method:describeConstable() [NONE] |
|
|
method:isHidden() [NONE] |
|
|
method:getPermittedSubclasses() [NONE] |
|
|
method:isSealed() [NONE] |
|
|
Constructor.newInstance
method avoids this problem by wrapping any exception thrown by the constructor in a (checked)InvocationTargetException
.The call
InvocationTargetException
andNoSuchMethodException
. Both of these exception types are subclasses ofReflectiveOperationException
.