I have an enum class with the params id and Class.
ENUM1(1, class.class);
private int id;
private Class<?> clazz;
ENUM(int id, Class<?> clazz) {
this.id = id;
this.clazz = clazz;
}
The class implements an abstract interface.
But how can i access the public methods of the "class.class"?
Thanks in advance!