Interface DesignElementDataVectorDao<T extends DesignElementDataVector>
-
- All Superinterfaces:
BaseDao<T>
- All Known Subinterfaces:
ProcessedExpressionDataVectorDao
,RawAndProcessedExpressionDataVectorDao
,RawExpressionDataVectorDao
- All Known Implementing Classes:
AbstractDesignElementDataVectorDao
,ProcessedExpressionDataVectorDaoImpl
,RawAndProcessedExpressionDataVectorDaoImpl
,RawExpressionDataVectorDaoImpl
@Repository public interface DesignElementDataVectorDao<T extends DesignElementDataVector> extends BaseDao<T>
- See Also:
DesignElementDataVector
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<T>
find(Collection<QuantitationType> quantitationTypes)
Collection<T>
find(QuantitationType quantitationType)
Collection<T>
find(BioAssayDimension bioAssayDimension)
Collection<T>
findByExpressionExperiment(ExpressionExperiment ee)
void
thaw(Collection<T> designElementDataVectors)
Thaw a collection of vectors.void
thaw(T designElementDataVector)
Thaw the given vector.-
Methods inherited from interface ubic.gemma.persistence.service.BaseDao
countAll, create, create, find, findOrCreate, getElementClass, getIdentifierPropertyName, load, load, loadAll, loadReference, loadReference, remove, remove, remove, save, save, update, update
-
-
-
-
Method Detail
-
find
Collection<T> find(BioAssayDimension bioAssayDimension)
-
find
Collection<T> find(Collection<QuantitationType> quantitationTypes)
-
find
Collection<T> find(QuantitationType quantitationType)
-
findByExpressionExperiment
Collection<T> findByExpressionExperiment(ExpressionExperiment ee)
-
thaw
void thaw(T designElementDataVector)
Thaw the given vector.
-
thaw
void thaw(Collection<T> designElementDataVectors)
Thaw a collection of vectors.
-
-