reflection

https://www.geeksforgeeks.org/reflection-in-java/

http://tutorials.jenkov.com/java-reflection/index.html

Reflection is an API which is used to examine or modify the behavior of methods, classes, interfaces at runtime.

Java Reflection makes it possible to inspect classes, interfaces, fields and methods at runtime, without knowing the names of the classes, methods etc. at compile time. It is also possible to instantiate new objects, invoke methods and get/set field values using reflection.

Last updated

Was this helpful?