Hello guys,
does anyone know, how to check if a class is abstract? The java.lang.class provides methods to check, if it is an interface or enum, which could be used like this:
Thanks to all!
Class actorClass = Actor.class; boolean isInterface = actorClass.isInterface();