Variable EntityTypeEnumConst

EntityTypeEnum: {
    Annotation: "annotationInterface";
    AnnotationElement: "annotationElement";
    Class: "class";
    Enum: "enum";
    EnumConstant: "enumConstant";
    ExternalObject: "externalObject";
    Field: "field";
    Interface: "interface";
    Method: "method";
    MethodReturn: "methodReturn";
    MethodTypeParameter: "methodTypeParameter";
    ObjectTypeParameter: "objectTypeParameter";
    Package: "package";
    Parameter: "parameter";
} = ...

Enum of all supported entity types.

Useful for discriminated unions.