In my project I need to dynamically access getters and setters of different objects many times. Due to that I would like a fast method for accessing a method dynamically.
Java 7 introduced the MethodHandle class for dynamically executing a method of a given class. From what I can see there is no such thing on the Android port of the JDK. Is there any workaround that can be used to circumvent this, other than using the standard reflection classes?