Module io.github.mmm.entity.bean
Class Update<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.AbstractEntityClause<E,Update<E>>
-
- io.github.mmm.entity.bean.sql.update.Update<E>
-
- Type Parameters:
E- type of theentity.
- All Implemented Interfaces:
Clause,MainClause<E>,StartClause,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 final class Update<E extends EntityBean> extends AbstractEntityClause<E,Update<E>> implements StartClause, MainClause<E>
StartClauseof an UpdateStatement to update data in the database.- Since:
- 1.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static StringNAME_UPDATEName ofUpdatefor marshaling.-
Fields inherited from class io.github.mmm.entity.bean.sql.AbstractEntityClause
entity, NAME_ALIAS, NAME_ENTITY
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateStatement<E>get()protected StringgetMarshallingName()-
Methods inherited from class io.github.mmm.entity.bean.sql.AbstractEntityClause
as, getAlias, getEntity, getEntityName, readProperty, setEntityName, 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
-
-
-
-
Field Detail
-
NAME_UPDATE
public static final String NAME_UPDATE
Name ofUpdatefor marshaling.- See Also:
- Constant Field Values
-
-
Method Detail
-
getMarshallingName
protected String getMarshallingName()
- Specified by:
getMarshallingNamein classAbstractClause- Returns:
- the name of the property for this clause.
-
get
public UpdateStatement<E> get()
- Specified by:
getin interfaceMainClause<E extends EntityBean>- Returns:
- the actual
Statementcontaining allClauses and representing your entire SQL.
-
-