isInterface abstract method
Checks if this class is an interface (abstract with no concrete members).
Returns:
true
if the class serves as a pure interfacefalse
for classes with implementations
Example:
interface class PureInterface {
void method();
}
Implementation
bool isInterface();