Uses of Class
org.powertac.visualizer.domain.enumeration.GameType
| Package | Description |
|---|---|
| org.powertac.visualizer.domain |
JPA domain objects.
|
| org.powertac.visualizer.domain.enumeration | |
| org.powertac.visualizer.repository |
Spring Data JPA repositories.
|
| org.powertac.visualizer.service |
Service layer beans.
|
-
Uses of GameType in org.powertac.visualizer.domain
Methods in org.powertac.visualizer.domain that return GameType Modifier and Type Method Description GameTypeGame. getType()Methods in org.powertac.visualizer.domain with parameters of type GameType Modifier and Type Method Description voidGame. setType(GameType type) -
Uses of GameType in org.powertac.visualizer.domain.enumeration
Methods in org.powertac.visualizer.domain.enumeration that return GameType Modifier and Type Method Description static GameTypeGameType. valueOf(String name)Returns the enum constant of this type with the specified name.static GameType[]GameType. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of GameType in org.powertac.visualizer.repository
Methods in org.powertac.visualizer.repository with parameters of type GameType Modifier and Type Method Description List<Game>GameRepository. findByNameAndType(String login, String name, GameType type)List<Game>GameRepository. findByNameAndType(String name, GameType type) -
Uses of GameType in org.powertac.visualizer.service
Methods in org.powertac.visualizer.service with parameters of type GameType Modifier and Type Method Description List<Game>GameService. findByNameAndType(String login, String name, GameType type)Get one game by login, name and type.