|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<MazePainter.PaintObjectType>
de.caff.maze.MazePainter.PaintObjectType
public static enum MazePainter.PaintObjectType
The current state of painting.
Enum Constant Summary | |
---|---|
Background
Painting the background. |
|
CellBorders
Painting the cell borders. |
|
InnerWalls
Painting the inner cell borders. |
|
OuterWalls
Painting the outer cell borders. |
|
Solution
Painting the solution. |
|
WayEnd
Painting the way end. |
|
WayStart
Painting the way start. |
Method Summary | |
---|---|
static MazePainter.PaintObjectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static MazePainter.PaintObjectType[] |
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 MazePainter.PaintObjectType Background
public static final MazePainter.PaintObjectType WayStart
public static final MazePainter.PaintObjectType WayEnd
public static final MazePainter.PaintObjectType Solution
public static final MazePainter.PaintObjectType CellBorders
public static final MazePainter.PaintObjectType InnerWalls
public static final MazePainter.PaintObjectType OuterWalls
Method Detail |
---|
public static final MazePainter.PaintObjectType[] values()
for(MazePainter.PaintObjectType c : MazePainter.PaintObjectType.values()) System.out.println(c);
public static MazePainter.PaintObjectType valueOf(java.lang.String name)
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namename
- the name of the enum constant to be returned.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |