Interface BioAssayDimensionDao
-
- All Superinterfaces:
BaseDao<BioAssayDimension>
,BaseVoEnabledDao<BioAssayDimension,BioAssayDimensionValueObject>
- All Known Implementing Classes:
BioAssayDimensionDaoImpl
public interface BioAssayDimensionDao extends BaseVoEnabledDao<BioAssayDimension,BioAssayDimensionValueObject>
- See Also:
BioAssayDimension
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<BioAssayDimension>
findByBioAssaysContainingAll(Collection<BioAssay> bioAssays)
Find all the dimensions that contains all the given assays.-
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
-
Methods inherited from interface ubic.gemma.persistence.service.BaseVoEnabledDao
loadAllValueObjects, loadValueObject, loadValueObjectById, loadValueObjects, loadValueObjectsByIds
-
-
-
-
Method Detail
-
findByBioAssaysContainingAll
Collection<BioAssayDimension> findByBioAssaysContainingAll(Collection<BioAssay> bioAssays)
Find all the dimensions that contains all the given assays.Note: the dimension might contain more assays than the given ones.
-
-