Uses of Class
com.neven.ticTacToeGame.entity.Statistic
-
Packages that use Statistic Package Description com.neven.ticTacToeGame.repository com.neven.ticTacToeGame.repository is a group of interfaces which extendsJpaRepository
interface and is a encapsulating storage for entities of application.com.neven.ticTacToeGame.service com.neven.ticTacToeGame.service is a group of classes which uses repositories to provide some business functionalities. -
-
Uses of Statistic in com.neven.ticTacToeGame.repository
Methods in com.neven.ticTacToeGame.repository that return types with arguments of type Statistic Modifier and Type Method Description java.util.Optional<Statistic>
StatisticRepository. findByName(java.lang.String statisticName)
This method allow to find statistic in database by statistic name. -
Uses of Statistic in com.neven.ticTacToeGame.service
Methods in com.neven.ticTacToeGame.service that return Statistic Modifier and Type Method Description Statistic
StatisticService. getStatistic()
This method useStatisticRepository
to find statistic with a nameSTATISTIC_NAME
.
-