public enum AppColors extends Enum<AppColors> implements ColorEnum
ColorItemReal.Gray, ColorItemReal.HSB, ColorItemReal.RGB01, ColorItemReal.RGB255, ColorItemReal.Web
Enum Constant and Description |
---|
STAGE_BG
The default Stage Background Color.
|
Modifier and Type | Method and Description |
---|---|
static AppColors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppColors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
rgb255, rgb255
rgb, rgb
hsb, hsb
web, web
gray, gray
builder
public static AppColors[] values()
for (AppColors c : AppColors.values()) System.out.println(c);
public static AppColors valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2011–2016 JRebirth OSS. All rights reserved.