edu.columbia.cs.coms4701.agent.environments.pente
Enum PentePerceptError.ReasonForError

java.lang.Object
  extended by java.lang.Enum<PentePerceptError.ReasonForError>
      extended by edu.columbia.cs.coms4701.agent.environments.pente.PentePerceptError.ReasonForError
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PentePerceptError.ReasonForError>
Enclosing class:
PentePerceptError

public static enum PentePerceptError.ReasonForError
extends java.lang.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

PositionIsOccupied

public static final PentePerceptError.ReasonForError PositionIsOccupied
The requested intersection already has a stone.


InitialMoveRequired

public static final PentePerceptError.ReasonForError InitialMoveRequired
The player is making the first move, which is required to be in the center.


PositionIsProhibited

public static final PentePerceptError.ReasonForError PositionIsProhibited
The player is Black, and made a second move within the prohibited zone, within two spaces of the center.

Method Detail

values

public static final PentePerceptError.ReasonForError[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(PentePerceptError.ReasonForError c : PentePerceptError.ReasonForError.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static PentePerceptError.ReasonForError valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name