Package net.sf.basedb.core
Class DynamicRawDataQuery.RawBioAssayJoiner
- java.lang.Object
-
- net.sf.basedb.core.DynamicRawDataQuery.RawBioAssayJoiner
-
- All Implemented Interfaces:
AutoJoiner<DynamicRawDataQuery,RawBioAssayPropertyExpression>
- Enclosing class:
- DynamicRawDataQuery
static class DynamicRawDataQuery.RawBioAssayJoiner extends Object implements AutoJoiner<DynamicRawDataQuery,RawBioAssayPropertyExpression>
Auto joiner for raw bioassays.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
RawBioAssayJoiner(JoinType joinType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<RawBioAssayPropertyExpression>
getElementClass()
The type of the query element the implementation works for.Class<DynamicRawDataQuery>
getQueryClass()
The type of the query the implementation works for.void
joinIfNeeded(DynamicRawDataQuery query, RawBioAssayPropertyExpression element)
Automatically join the tables that is is needed by the query element unless they are already joined.void
reset(DynamicRawDataQuery query)
Called to indicate thatQuery.reset()
has been called on the given query.
-
-
-
Field Detail
-
joinType
private final JoinType joinType
-
-
Constructor Detail
-
RawBioAssayJoiner
private RawBioAssayJoiner(JoinType joinType)
-
-
Method Detail
-
getQueryClass
public Class<DynamicRawDataQuery> getQueryClass()
Description copied from interface:AutoJoiner
The type of the query the implementation works for. This can be an actual subclass or a superclass.- Specified by:
getQueryClass
in interfaceAutoJoiner<DynamicRawDataQuery,RawBioAssayPropertyExpression>
- Returns:
- A class object representing the query type
-
getElementClass
public Class<RawBioAssayPropertyExpression> getElementClass()
Description copied from interface:AutoJoiner
The type of the query element the implementation works for. This can be an actual subclass or a superclass.- Specified by:
getElementClass
in interfaceAutoJoiner<DynamicRawDataQuery,RawBioAssayPropertyExpression>
- Returns:
- A class object representing the query element type
-
joinIfNeeded
public void joinIfNeeded(DynamicRawDataQuery query, RawBioAssayPropertyExpression element)
Description copied from interface:AutoJoiner
Automatically join the tables that is is needed by the query element unless they are already joined.- Specified by:
joinIfNeeded
in interfaceAutoJoiner<DynamicRawDataQuery,RawBioAssayPropertyExpression>
- Parameters:
query
- The queryelement
- The query element
-
reset
public void reset(DynamicRawDataQuery query)
Description copied from interface:AutoJoiner
Called to indicate thatQuery.reset()
has been called on the given query.- Specified by:
reset
in interfaceAutoJoiner<DynamicRawDataQuery,RawBioAssayPropertyExpression>
- Parameters:
query
- The query
-
-