Value enum with CharEnumEntry entries
This is similar to enumeratum.Enum, but different in that values must be literal values. This restraint allows us to enforce uniqueness at compile time.
Note that uniqueness is only guaranteed if you do not do any runtime string manipulation on values.
Attributes
- Companion
- object
- Graph
-
- Supertypes
Members list
Value members
Inherited methods
Returns a Seq of A objects that the macro was able to find.
Returns a Seq of A objects that the macro was able to find.
You will want to use this in some way to implement your values method. In fact, if you aren't using this method...why are you even bothering with this lib?
Attributes
- Inherited from:
- CharEnumCompat (hidden)
The sequence of values for your Enum. You will typically want to implement this in your extending class as a val so that withValue and friends are as efficient as possible.
The sequence of values for your Enum. You will typically want to implement this in your extending class as a val so that withValue and friends are as efficient as possible.
Feel free to implement this however you'd like (including messing around with ordering, etc) if that fits your needs better.
Attributes
- Inherited from:
- ValueEnum
Tries to get an EntryType by the supplied value. The value corresponds to the .value of the case objects implementing EntryType
Tries to get an EntryType by the supplied value. The value corresponds to the .value of the case objects implementing EntryType
Like Enumeration 's withValue, this method will throw if the value does not match any of the values' .value values.
Attributes
- Inherited from:
- ValueEnum
Returns an [[Right[EntryType]] ] for a given value, or a [[Left[NoSuchMember]] ] if the value does not match any of the values' .value values.
Returns an [[Right[EntryType]] ] for a given value, or a [[Left[NoSuchMember]] ] if the value does not match any of the values' .value values.
Attributes
- Inherited from:
- ValueEnum
Optionally returns an EntryType for a given value.
Inherited fields
Map of ValueType to EntryType members