public static enum ColorFunctions.SystemColor extends Enum<ColorFunctions.SystemColor>
| Enum Constant and Description |
|---|
BLACK |
BLUE |
CYAN |
GREEN |
MAGENTA |
RED |
WHITE |
YELLOW |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static ColorFunctions.SystemColor |
valueOf(int index) |
static ColorFunctions.SystemColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColorFunctions.SystemColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorFunctions.SystemColor BLACK
public static final ColorFunctions.SystemColor RED
public static final ColorFunctions.SystemColor GREEN
public static final ColorFunctions.SystemColor YELLOW
public static final ColorFunctions.SystemColor BLUE
public static final ColorFunctions.SystemColor MAGENTA
public static final ColorFunctions.SystemColor CYAN
public static final ColorFunctions.SystemColor WHITE
public static ColorFunctions.SystemColor[] values()
for (ColorFunctions.SystemColor c : ColorFunctions.SystemColor.values()) System.out.println(c);
public static ColorFunctions.SystemColor 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 nullpublic String getName()
public static ColorFunctions.SystemColor valueOf(int index)
Copyright © 2012–2019. All rights reserved.