Enum Color
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLACKREDGREENYELLOWBLUEMAGENTACYANLIGHT_GRAYDARK_GRAYLIGHT_REDLIGHT_GREENLIGHT_YELLOWLIGHT_BLUELIGHT_MAGENTALIGHT_CYANWHITE
-
Method Summary
Modifier and Type Method Description final ColorvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<Color>values()Returns an array containing the constants of this enum type, in the order they're declared. final IntegergetCode()final EnumEntries<Color>getEntries()Stripped down version of https://github.com/ziggy42/kolor (ziggy42/kolor#6). -
-
Method Detail
-
valueOf
final Color valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<Color> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<Color> getEntries()
Stripped down version of https://github.com/ziggy42/kolor (ziggy42/kolor#6).
-
-
-
-