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