XSDEnumeration

Restrict the allowed value-space to a list of values separated by the characters |.

Note:
  1. To escape the separator character, simply double it like the following ||
  2. This attribute can be set on any simple 4GL variable excepted on XSDBoolean.
DEFINE myStr STRING ATTRIBUTE(XSDString,
  XSDEnumeration="one|two|three|four", XMLName="MyString")
DEFINE myDec DECIMAL(3,1) ATTRIBUTE(XSDDecimal,
  XSDEnumeration="12.1|11.8|-24.7", XMLName="MyDecimal")