Interface PlayerRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<Player,UUID>, org.springframework.data.jpa.repository.JpaRepository<Player,UUID>, org.springframework.data.repository.ListCrudRepository<Player,UUID>, org.springframework.data.repository.ListPagingAndSortingRepository<Player,UUID>, org.springframework.data.repository.PagingAndSortingRepository<Player,UUID>, org.springframework.data.repository.query.QueryByExampleExecutor<Player>, org.springframework.data.repository.Repository<Player,UUID>

public interface PlayerRepository extends org.springframework.data.jpa.repository.JpaRepository<Player,UUID>
Repositorio de jugadores.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • existsByName

      boolean existsByName(String name)
    • findByName

      Player findByName(String name)