Accessing C++ enums in Java is implemented via a Python script which analyzes the C++ enum and spits out the corresponding Java class. The enum needs to be annotated in a particular way. By default, ...
Returns the range between the two given enum values, as an ordered array. The values must be from the same enum type. If the first parameter is null, the result will start with the first value of the ...
enum_first(anyenum) Returns the first value of the input enum type enum_first(null::rainbow) red enum_last(anyenum) Returns the last value of the input enum type enum_last(null::rainbow) purple ...