Module io.github.mmm.entity.bean
Class UpdateStatement<E extends EntityBean>
- java.lang.Object
-
- io.github.mmm.marshall.AbstractMarshallingObject
-
- io.github.mmm.entity.bean.sql.AbstractStatement<E>
-
- io.github.mmm.entity.bean.sql.update.UpdateStatement<E>
-
- Type Parameters:
E- type of theentity.
- All Implemented Interfaces:
Statement<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 UpdateStatement<E extends EntityBean> extends AbstractStatement<E>
- Since:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor Description UpdateStatement(Update<E> update)The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected voidaddClauses(List<Clause> list)UpdateSet<E>getSet()Update<E>getStart()Deprecated.usegetUpdate()to make it more explicit.Update<E>getUpdate()UpdateWhere<E>getWhere()-
Methods inherited from class io.github.mmm.entity.bean.sql.AbstractStatement
getClauses, readProperty, toString, writeProperties
-
-
-
-
Method Detail
-
getStart
@Deprecated public Update<E> getStart()
Deprecated.usegetUpdate()to make it more explicit.- Returns:
- the
StartClause
-
getWhere
public UpdateWhere<E> getWhere()
-
addClauses
protected void addClauses(List<Clause> list)
- Specified by:
addClausesin classAbstractStatement<E extends EntityBean>- Parameters:
list- theListwhere toaddtheClauses.- See Also:
AbstractStatement.getClauses()
-
-