public static enum Content.MatrixColor extends java.lang.Enum<Content.MatrixColor>
| Modifier and Type | Method and Description |
|---|---|
static Content.MatrixColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Content.MatrixColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Content.MatrixColor RED
public static final Content.MatrixColor GREEN
public static final Content.MatrixColor BLUE
public static final Content.MatrixColor YELLOW
public static final Content.MatrixColor RGB
public static Content.MatrixColor[] values()
for (Content.MatrixColor c : Content.MatrixColor.values()) System.out.println(c);
public static Content.MatrixColor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null