Interface SolrRepository<T,ID extends Serializable>
- Type Parameters:
T-ID-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<T,,ID> org.springframework.data.repository.Repository<T,ID>
- All Known Subinterfaces:
SolrCrudRepository<T,ID>
- All Known Implementing Classes:
SimpleSolrRepository
@NoRepositoryBean
public interface SolrRepository<T,ID extends Serializable>
extends org.springframework.data.repository.CrudRepository<T,ID>
-
Method Summary
Methods inherited from interface org.springframework.data.repository.CrudRepository
delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
-
Method Details
-
count
long count()Returns the number of entities available.- Specified by:
countin interfaceorg.springframework.data.repository.CrudRepository<T,ID extends Serializable> - Returns:
- the total number of entities
-