Java 8 will be introducing an easier way to discover the parameter names of methods and constructors.
Prior to Java 8, the way to find the parameter names is by turning the debug symbols on at the compilation stage which adds meta information about the parameter names in the generated class files then to extract the information which is complicated and requires manipulating the byte code to get to the parameter names.
With Java 8, though the compilation step with debug symbols on is still required to get the parameter names into the class byte code, the extraction of this information is way simpler and is supported with Java reflection, for eg. Consider a simple class:
public class Bot {
private final String name;
private final String author;
private final int rating;
private final int score;
public Bot(String name, String author, int rating, int score) {
this.name = name;
this.author = author;
this.rating = rating;
this.score = score;
}
...
}theoretically, a code along these lines should get hold of the parameter names of the constructor above:
Class<Bot> clazz = Bot.class;
Constructor ctor = clazz.getConstructor(String.class, String.class, int.class, int.class);
Parameter[] ctorParameters =ctor.getParameters();
for (Parameter param: ctorParameters) {
System.out.println(param.isNamePresent() + ":" + param.getName());
}Parameter is a new reflection type which encapsulates this information. In my tests with Java Developer Preview (b120), I couldnβt get this to work though!
Resources:
- http://openjdk.java.net/jeps/118
Thank you!
We will contact you soon.
Biju KunjummenDecember 27th, 2013Last Updated: December 26th, 2013

This site uses Akismet to reduce spam. Learn how your comment data is processed.
The correct compiler flag for the parameter name related information to be added to the byte code is β-parametersβ