class documentation

class VariableSemantic(enum.Enum): (source)

View In Hierarchy

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

Constant CLASS_VARIABLE The #Variable object is a static variable of a class.
Constant CONSTANT The #Variable object represents a constant value.
Constant INSTANCE_VARIABLE The #Variable object is an instance variable of a class.
CLASS_VARIABLE: int = (source)

The #Variable object is a static variable of a class.

Value
1
CONSTANT: int = (source)

The #Variable object represents a constant value.

Value
2
INSTANCE_VARIABLE: int = (source)

The #Variable object is an instance variable of a class.

Value
0