- java.lang.Object
-
- org.mybatis.dynamic.sql.where.AbstractWhereSupport<DeleteDSL.DeleteWhereBuilder>
-
- org.mybatis.dynamic.sql.delete.DeleteDSL<R>
-
- All Implemented Interfaces:
Buildable<R>
public class DeleteDSL<R> extends AbstractWhereSupport<DeleteDSL.DeleteWhereBuilder> implements Buildable<R>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classDeleteDSL.DeleteWhereBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Rbuild()WARNING! Calling this method could result in an delete statement that deletes all rows in a table.static <R> DeleteDSL<R>deleteFrom(Function<DeleteModel,R> adapterFunction, SqlTable table)static DeleteDSL<DeleteModel>deleteFrom(SqlTable table)DeleteDSL.DeleteWhereBuilderwhere()-
Methods inherited from class org.mybatis.dynamic.sql.where.AbstractWhereSupport
applyWhere, where, where, where, where
-
-
-
-
Method Detail
-
where
public DeleteDSL.DeleteWhereBuilder where()
- Specified by:
wherein classAbstractWhereSupport<DeleteDSL.DeleteWhereBuilder>
-
build
@NotNull public R build()
WARNING! Calling this method could result in an delete statement that deletes all rows in a table.
-
deleteFrom
public static <R> DeleteDSL<R> deleteFrom(Function<DeleteModel,R> adapterFunction, SqlTable table)
-
deleteFrom
public static DeleteDSL<DeleteModel> deleteFrom(SqlTable table)
-
-