|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PentePerceptError.ReasonForError>
edu.columbia.cs.coms4701.agent.environments.pente.PentePerceptError.ReasonForError
public static enum PentePerceptError.ReasonForError
Explains why an attempted move is invalid.
Enum Constant Summary | |
---|---|
InitialMoveRequired
The player is making the first move, which is required to be in the center. |
|
PositionIsOccupied
The requested intersection already has a stone. |
|
PositionIsProhibited
The player is Black, and made a second move within the prohibited zone, within two spaces of the center. |
Method Summary | |
---|---|
static PentePerceptError.ReasonForError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PentePerceptError.ReasonForError[] |
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 PentePerceptError.ReasonForError PositionIsOccupied
public static final PentePerceptError.ReasonForError InitialMoveRequired
public static final PentePerceptError.ReasonForError PositionIsProhibited
Method Detail |
---|
public static final PentePerceptError.ReasonForError[] values()
for(PentePerceptError.ReasonForError c : PentePerceptError.ReasonForError.values()) System.out.println(c);
public static PentePerceptError.ReasonForError 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
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |