class documentation

class ClassSemantic(enum.Enum): (source)

View In Hierarchy

A list of well-known properties and behaviour that can be attributed to a class.

Constant ABSTRACT The class is abstract.
Constant ENUM The class is an enumeration.
Constant FINAL The class is final.
Constant INTERFACE The class describes an interface.
ABSTRACT: int = (source)

The class is abstract.

Value
1
ENUM: int = (source)

The class is an enumeration.

Value
3
FINAL: int = (source)

The class is final.

Value
2
INTERFACE: int = (source)

The class describes an interface.

Value
0