Uses of Class
model.BoardCell
-
-
Uses of BoardCell in model
Methods in model that return BoardCell Modifier and Type Method Description BoardCell[][]
GameModel. getBoard()
Returns a reference to the board without making any kind of copy.BoardCell
GameModel. getBoardCell(int rowIndex, int colIndex)
Returns the value at a given location of the boardstatic BoardCell
BoardCell. getNonEmptyRandomBoardCell(java.util.Random random)
Generates a random BoardCell using the specified Random object.static BoardCell
BoardCell. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BoardCell[]
BoardCell. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in model with parameters of type BoardCell Modifier and Type Method Description void
GameModel. setBoardCell(int rowIndex, int colIndex, BoardCell boardCell)
Sets the cell at the specified location to value provided.
-