Interface StatementDao
-
- All Known Implementing Classes:
StatementDaoImpl
public interface StatementDao extends BaseDao<Statement>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Statement>
findByObject(String value)
Collection<Statement>
findByObjectLike(String s)
Collection<Statement>
findByObjectUri(String uri)
Collection<Statement>
findByPredicate(String value)
Collection<Statement>
findByPredicateLike(String s)
Collection<Statement>
findByPredicateUri(String uri)
-
Methods inherited from interface ubic.gemma.persistence.service.BaseDao
countAll, create, create, find, findOrCreate, getElementClass, getIdentifierPropertyName, load, load, loadAll, loadReference, loadReference, reload, reload, remove, remove, remove, save, save, streamAll, streamAll, update, update
-
-
-
-
Method Detail
-
findByPredicate
Collection<Statement> findByPredicate(String value)
-
findByPredicateLike
Collection<Statement> findByPredicateLike(String s)
-
findByPredicateUri
Collection<Statement> findByPredicateUri(String uri)
-
findByObject
Collection<Statement> findByObject(String value)
-
findByObjectLike
Collection<Statement> findByObjectLike(String s)
-
findByObjectUri
Collection<Statement> findByObjectUri(String uri)
-
-