Is it possible to look up a method handle for a overloaded method in Java 7?
Asked
Active
Viewed 303 times
1 Answers
4
You can get a MethodHandle
to anything you can get a Method
for using MethodHandles.Lookup.unreflect()
.

Joachim Sauer
- 302,674
- 57
- 556
- 614
-
Ah, I didn't see that one. Thanks! – Kimble Jun 15 '12 at 10:00