reaktivity / nukleus-maven-plugin

Nukleus Maven Plugin
Apache License 2.0
0 stars 10 forks source link

Support uint and string types for parameterized enums #90

Closed jfallows closed 5 years ago

jfallows commented 5 years ago

Support uint8, uint16, uint32, uint64, string, string16, string32.

For example, using string.

enum Number (string)
{
    ONE("uno"),
    TWO("dos"),
    THREE("tres")
}

Requires #77