possibleValues property

List<EnumValuePair>? possibleValues
getter/setter pair

The list of possible values for the enumeration property.

All EnumValuePairs must provide a string value. If you specify an integer value for one EnumValuePair, then all possible EnumValuePairs must provide an integer value. Both the string value and integer value must be unique over all possible values. Once set, possible values cannot be removed or modified. If you supply an ordered ranking and think you might insert additional enum values in the future, leave gaps in the initial integer values to allow adding a value in between previously registered values. The maximum number of elements is 100.

Implementation

core.List<EnumValuePair>? possibleValues;