Possible Duplicate:
Can I get all methods of a class?
Is there a way to display all the availables methods of some class in java?
Possible Duplicate:
Can I get all methods of a class?
Is there a way to display all the availables methods of some class in java?
through reflection:
public static void main(String[] args){
for (Method method : YourClass.class.getMethods()) {
System.out.println(method.getName());
}
}