|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DotColor>
edu.mit.csail.sdg.alloy4graph.DotColor
public enum DotColor
Immutable; this defines the set of possible colors.
Thread Safety: Can be called only by the AWT event thread.
Enum Constant Summary | |
---|---|
BLACK
|
|
BLUE
|
|
GRAY
|
|
GREEN
|
|
MAGIC
|
|
RED
|
|
WHITE
|
|
YELLOW
|
Method Summary | |
---|---|
java.awt.Color |
getColor(DotPalette pal)
Convert this color into its corresponding Java Color object. |
java.lang.String |
getDisplayedText()
Returns the String that will be displayed in the GUI to represent this value. |
java.lang.String |
getDotText(DotPalette pal)
Returns the String that should be written into the dot file for this value, when used with the given palette. |
javax.swing.Icon |
getIcon(DotPalette pal)
Returns the Icon that will be displayed in the GUI to represent this value, when used with the given palette. |
static DotColor |
parse(java.lang.String x)
This method is used in parsing the XML value into a valid color; returns null if there is no match. |
java.lang.String |
toString()
This value is used in writing XML. |
static DotColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DotColor[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
static java.lang.Object[] |
valuesWithout(DotColor exclude)
Returns the list of values that the user is allowed to select from. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DotColor MAGIC
public static final DotColor YELLOW
public static final DotColor GREEN
public static final DotColor BLUE
public static final DotColor RED
public static final DotColor GRAY
public static final DotColor WHITE
public static final DotColor BLACK
Method Detail |
---|
public static DotColor[] values()
for (DotColor c : DotColor.values()) System.out.println(c);
public static DotColor 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
java.lang.NullPointerException
- if the argument is nullpublic static java.lang.Object[] valuesWithout(DotColor exclude)
public javax.swing.Icon getIcon(DotPalette pal)
public java.awt.Color getColor(DotPalette pal)
public java.lang.String getDotText(DotPalette pal)
public java.lang.String getDisplayedText()
public static DotColor parse(java.lang.String x)
public java.lang.String toString()
toString
in class java.lang.Enum<DotColor>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |