$boolean = $session->isAbstract( $class )

The isAbstract() function indicates whether the specified class is abstract.

An abstract class is one from which other classes are derived but which cannot have any objects.

 $class = "ICIM_UnitaryComputerSystem";
 $flag = $session->isAbstract( $class );