Uses of Class
com.neven.ticTacToeGame.utils.GameTypes
-
Packages that use GameTypes Package Description com.neven.ticTacToeGame.utils com.neven.ticTacToeGame.utils is a group of classes and enums which is helpful in the application but has no any business logic -
-
Uses of GameTypes in com.neven.ticTacToeGame.utils
Methods in com.neven.ticTacToeGame.utils that return GameTypes Modifier and Type Method Description static GameTypes
GameTypes. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GameTypes[]
GameTypes. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.neven.ticTacToeGame.utils with parameters of type GameTypes Modifier and Type Method Description static Game
GamesFactory. getGame(GameTypes gameType)
This method return specificGame
(can bePlayerVsPlayerGame
,PlayerVsRandomGame
,PlayerVsAlgorithmGame
) by receiving game type fromGameTypes
.
-