Module io.github.mmm.entity.bean
Class InsertValues<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.AssignmentClause<E,SELF>
-
- io.github.mmm.entity.bean.sql.Values<E,InsertValues<E>>
-
- io.github.mmm.entity.bean.sql.insert.InsertValues<E>
-
- Type Parameters:
E- type of theentity.
- All Implemented Interfaces:
Clause,MainClause<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 InsertValues<E extends EntityBean> extends Values<E,InsertValues<E>> implements MainClause<E>
- Since:
- 1.0.0
-
-
Field Summary
-
Fields inherited from class io.github.mmm.entity.bean.sql.Values
NAME_VALUES
-
Fields inherited from class io.github.mmm.entity.bean.sql.AssignmentClause
NAME_ASSIGNMENTS
-
-
Constructor Summary
Constructors Constructor Description InsertValues(InsertStatement<E> statement)The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InsertStatement<E>get()protected EgetEntity()-
Methods inherited from class io.github.mmm.entity.bean.sql.Values
getMarshallingName
-
Methods inherited from class io.github.mmm.entity.bean.sql.AssignmentClause
and, and, and, andId, andId, getAssignments, 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
-
-
-
-
Constructor Detail
-
InsertValues
public InsertValues(InsertStatement<E> statement)
The constructor.- Parameters:
statement- the owningInsertStatement.
-
-
Method Detail
-
getEntity
protected E getEntity()
- Specified by:
getEntityin classAssignmentClause<E extends EntityBean,InsertValues<E extends EntityBean>>- Returns:
- the
EntityBean.
-
get
public InsertStatement<E> get()
- Specified by:
getin interfaceMainClause<E extends EntityBean>- Returns:
- the actual
Statementcontaining allClauses and representing your entire SQL.
-
-