Class AbstractDesignElementDataVectorDao<T extends DesignElementDataVector>
- java.lang.Object
-
- ubic.gemma.persistence.service.AbstractDao<T>
-
- ubic.gemma.persistence.service.expression.bioAssayData.AbstractDesignElementDataVectorDao<T>
-
- All Implemented Interfaces:
BaseDao<T>,DesignElementDataVectorDao<T>
- Direct Known Subclasses:
ProcessedExpressionDataVectorDaoImpl,RawAndProcessedExpressionDataVectorDaoImpl,RawExpressionDataVectorDaoImpl
public abstract class AbstractDesignElementDataVectorDao<T extends DesignElementDataVector> extends AbstractDao<T> implements DesignElementDataVectorDao<T>
- Author:
- pavlidis
- See Also:
DesignElementDataVector
-
-
Field Summary
-
Fields inherited from class ubic.gemma.persistence.service.AbstractDao
elementClass, log
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractDesignElementDataVectorDao(Class<T> elementClass, SessionFactory sessionFactory)protectedAbstractDesignElementDataVectorDao(Class<T> elementClass, SessionFactory sessionFactory, ClassMetadata classMetadata)
-
Method Summary
All Methods Instance Methods Concrete 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)voidthaw(Collection<T> designElementDataVectors)Thaw a collection of vectors.voidthaw(T designElementDataVector)Thaw the given vector.-
Methods inherited from class ubic.gemma.persistence.service.AbstractDao
countAll, create, create, find, findByProperty, findByPropertyIn, findOneByProperty, findOrCreate, getBatchSize, getElementClass, getIdentifierPropertyName, getSessionFactory, load, load, loadAll, loadReference, loadReference, remove, remove, remove, save, save, update, update
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
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
-
-
-
-
Constructor Detail
-
AbstractDesignElementDataVectorDao
protected AbstractDesignElementDataVectorDao(Class<T> elementClass, SessionFactory sessionFactory)
-
AbstractDesignElementDataVectorDao
protected AbstractDesignElementDataVectorDao(Class<T> elementClass, SessionFactory sessionFactory, ClassMetadata classMetadata)
-
-
Method Detail
-
find
public Collection<T> find(BioAssayDimension bioAssayDimension)
- Specified by:
findin interfaceDesignElementDataVectorDao<T extends DesignElementDataVector>
-
find
public Collection<T> find(Collection<QuantitationType> quantitationTypes)
- Specified by:
findin interfaceDesignElementDataVectorDao<T extends DesignElementDataVector>
-
thaw
public void thaw(Collection<T> designElementDataVectors)
Description copied from interface:DesignElementDataVectorDaoThaw a collection of vectors.- Specified by:
thawin interfaceDesignElementDataVectorDao<T extends DesignElementDataVector>
-
thaw
public void thaw(T designElementDataVector)
Description copied from interface:DesignElementDataVectorDaoThaw the given vector.- Specified by:
thawin interfaceDesignElementDataVectorDao<T extends DesignElementDataVector>
-
find
public Collection<T> find(QuantitationType quantitationType)
- Specified by:
findin interfaceDesignElementDataVectorDao<T extends DesignElementDataVector>
-
findByExpressionExperiment
public Collection<T> findByExpressionExperiment(ExpressionExperiment ee)
- Specified by:
findByExpressionExperimentin interfaceDesignElementDataVectorDao<T extends DesignElementDataVector>
-
-