Module io.github.mmm.entity.bean
Class SelectWhere<E extends EntityBean>
- java.lang.Object
-
- io.github.mmm.marshall.AbstractMarshallingObject
-
- io.github.mmm.entity.bean.sql.AbstractClause
-
- io.github.mmm.entity.bean.sql.AbstractTypedClause<E,SELF>
-
- io.github.mmm.entity.bean.sql.PredicateClause<E,SELF>
-
- io.github.mmm.entity.bean.sql.Where<E,SelectWhere<E>>
-
- io.github.mmm.entity.bean.sql.select.SelectWhere<E>
-
- Type Parameters:
E- type of theentity.
- All Implemented Interfaces:
Clause,MainClause<E>,ClauseWithGroupBy<E>,ClauseWithOrderBy<E>,TypedClause<E>,io.github.mmm.marshall.MarshallableObject,io.github.mmm.marshall.Marshaller<Object>,io.github.mmm.marshall.Marshalling<Object>,io.github.mmm.marshall.MarshallingObject,io.github.mmm.marshall.UnmarshallableObject,io.github.mmm.marshall.Unmarshaller<Object>
public class SelectWhere<E extends EntityBean> extends Where<E,SelectWhere<E>> implements ClauseWithGroupBy<E>, ClauseWithOrderBy<E>
- Since:
- 1.0.0
-
-
Field Summary
-
Fields inherited from class io.github.mmm.entity.bean.sql.Where
NAME_WHERE
-
Fields inherited from class io.github.mmm.entity.bean.sql.PredicateClause
NAME_PREDICATES
-
-
Constructor Summary
Constructors Constructor Description SelectWhere(SelectStatement<E> statement)The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SelectStatement<E>get()-
Methods inherited from class io.github.mmm.entity.bean.sql.Where
getMarshallingName
-
Methods inherited from class io.github.mmm.entity.bean.sql.PredicateClause
and, and, getPredicates, isOmit, readProperty, writeProperties
-
Methods inherited from class io.github.mmm.entity.bean.sql.AbstractTypedClause
self
-
Methods inherited from class io.github.mmm.entity.bean.sql.AbstractClause
toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.github.mmm.entity.bean.sql.select.ClauseWithGroupBy
groupBy, groupBy
-
Methods inherited from interface io.github.mmm.entity.bean.sql.select.ClauseWithOrderBy
orderBy, orderBy
-
-
-
-
Constructor Detail
-
SelectWhere
public SelectWhere(SelectStatement<E> statement)
The constructor.- Parameters:
statement- the owningSelectStatement.
-
-
Method Detail
-
get
public SelectStatement<E> get()
- Specified by:
getin interfaceClauseWithGroupBy<E extends EntityBean>- Specified by:
getin interfaceClauseWithOrderBy<E extends EntityBean>- Specified by:
getin interfaceMainClause<E extends EntityBean>- Returns:
- the actual
Statementcontaining allClauses and representing your entire SQL.
-
-