values property

List<T> values
final

Gets the supplied Enum values

Note: It would be ideal to use reflectables to get this value for us. This is possible, using (reflectType(T) as ClassMirror).invokeGetter(#values)... While this worked for the unit tests, it failed during an actual build and run

Implementation

final List<T> values;