Well, here is the way

1.
In Transformation Table
%if classStereotype=="enumeration"%
%endTemplate%
Table
{
%TRANSFORM_REFERENCE("Table")%
%TRANSFORM_CURRENT("language", "stereotype")%
name=%qt%%CONVERT_NAME(className, "Camel Case", "ab(_)ab")%%qt%
language=%qt%%genOptDefaultDatabase%%qt%
%list="Attribute" @separator="\n" @indent=" "%
$COMMENT="Enum class ako attribĂșt v Tabuľke."
%list="Connector__Enum" @separator="\n" @indent=" "%
...
2 adding a new Connector__Enum Template
%if connectorType == "Association" or connectorType=="Aggregation"%
%if connectorSourceElemStereotype == "enumeration" %
Column
{
%if connectorSourceRole != ""%
name=%qt%%CONVERT_NAME(connectorSourceRole, "cascal Case", "ab(_)ab")%%qt%
%else%
name=%qt%%CONVERT_NAME(connectorSourceElemName, "cascal Case", "ab(_)ab")%%qt%
%endIf%
type=%qt%%CONVERT_TYPE(genOptDefaultDatabase,"varchar(10)")%%qt%
%if connectorNotes != ""%
notes=%qt%%connectorNotes% %connectorSourceElemNotes%%qt%
%else%
notes=%qt%%connectorSourceElemNotes%%qt%
%endIf%
Tag
{
name="LengthType"
value="CHAR"
}
}
%endIf%
%endIf%
.... in the end, it worked
