Version 4 (modified by hopscc, 14 years ago) |
---|
Enumeration
An enumeration is a distinct type consisting of a set of named constants (enumerator list, enumeration elements).
By default the underlying type of the enumeration elements is int and the first enumerator
has the value 0 with the value of each successive enumerator increased by 1.
Enumerators can have initialisers to override the default values.
In Cobra an enumeration is declared with the enum keyword followed by the enumeration name.
As this is a type the enum name must start with an uppercase letter.
Enumeration element names (with optional initialiser values) follow individually on subsequent lines each equally indented
or with multiple comma separated on the same line.
enum States Init Valid Working Dead enum Tasks ChopWood, CarryWater Enlightenment
Emumerations are referenced by the Enumeration class name dotted with the enumeration element name
or like a constructor call: enumName(enumElementName) .
e = MyEnum.Start e1 = MyEnum(Start)
Multiple elements can be or'd together by specifying multiple elementNames comma separated within the constructor-like call.
Grammar
enum <enumName> [ is <accessModifier>] [ has <Attributes>] [ of <Type> ] [ <DocString> ] <enumItemName> [ = <value> ] ... e = <enumName>.<enumItemName> e1 = <enumName>(<enumItemName>[, <enumItemName> ...])
Platform
Examples
enum Days """In this enumeration, Sat is 0, Sun is 1, Mon is 2, and so forth.""" Sat Sun Mon Tue Wed Thu Fri class UseDays def main is shared today = Days.Fri yesterday = Day(Thu) weekend = Days(Sat, Sun) isWeekend = today in [Days.Sat, Days.Sun] # explicit test enum member inclusion enum OtherDays Mon, Tue, Wed, Thu, Fri Sat, Sun
Platform
On .Net see the effect of System.FlagsAttribute on an enum
enum CarOptions has Flags SunRoof = 0x01 Spoiler = 0x02 FogLights = 0x04 TintedWindows = 0x08 class FlagTest def main is shared options = CarOptions(SunRoof,FogLights) print options print options to int assert (options & CarOptions.SunRoof) == CarOptions.SunRoof # bitwise test combined options /# Output is SunRoof, FogLights 5 Without 'has Flags' on enum CarOptions 5 5 #/
Notes
It is suggested all enumerations have an element whose value is 0.
If this is in addition to the default starting point of values it should be named None.