java.lang.Objectjava.lang.Enum<DotColorModel.ColorModel>
ucot.ui.gui.dot.DotColorModel.ColorModel
public static enum DotColorModel.ColorModel
ColorModel sets available for using with Dot
Enum Constant Summary | |
---|---|
BLACK_ON_WHITE
|
|
BLUE
|
|
GREEN
|
|
RED
|
|
WHITE_ON_BLACK
|
Method Summary | |
---|---|
static DotColorModel.ColorModel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DotColorModel.ColorModel[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DotColorModel.ColorModel BLACK_ON_WHITE
public static final DotColorModel.ColorModel WHITE_ON_BLACK
public static final DotColorModel.ColorModel GREEN
public static final DotColorModel.ColorModel BLUE
public static final DotColorModel.ColorModel RED
Method Detail |
---|
public static final DotColorModel.ColorModel[] values()
for(DotColorModel.ColorModel c : DotColorModel.ColorModel.values()) System.out.println(c);
public static DotColorModel.ColorModel 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 name