reflection
Last updated
Was this helpful?
Last updated
Was this helpful?
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.