Uses of Class
MazeCell.CellState

Uses of MazeCell.CellState in <Unnamed>
 

Fields in <Unnamed> declared as MazeCell.CellState
private  MazeCell.CellState MazeCell.state
          The current visitation state of this cell.
 

Methods in <Unnamed> that return MazeCell.CellState
 MazeCell.CellState MazeCell.getState()
          Returns the current visitation state of the Cell.
static MazeCell.CellState MazeCell.CellState.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MazeCell.CellState[] MazeCell.CellState.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in <Unnamed> with parameters of type MazeCell.CellState
 void MazeCell.setState(MazeCell.CellState s)
          Sets the current visitation state of the Cell.