Package com.kenshoo.pl.data
Class DeleteRecordCommand
- java.lang.Object
-
- com.kenshoo.pl.data.AbstractRecordCommand
-
- com.kenshoo.pl.data.DeleteRecordCommand
-
public class DeleteRecordCommand extends AbstractRecordCommand
-
-
Constructor Summary
Constructors Constructor Description DeleteRecordCommand(DataTable table, int id)Convenience constructor for tables with integer IDDeleteRecordCommand(DataTable table, long id)Convenience constructor for tables with bigint IDDeleteRecordCommand(DataTable table, DatabaseId id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DatabaseIdgetId()<T> voidset(org.jooq.Field<T> field, T value)-
Methods inherited from class com.kenshoo.pl.data.AbstractRecordCommand
get, getFields, getPrimaryKeyField, getTable, getValues, isEmpty
-
-
-
-
Constructor Detail
-
DeleteRecordCommand
public DeleteRecordCommand(DataTable table, DatabaseId id)
-
DeleteRecordCommand
public DeleteRecordCommand(DataTable table, int id)
Convenience constructor for tables with integer ID
-
DeleteRecordCommand
public DeleteRecordCommand(DataTable table, long id)
Convenience constructor for tables with bigint ID
-
-
Method Detail
-
getId
public DatabaseId getId()
-
set
public <T> void set(org.jooq.Field<T> field, T value)- Overrides:
setin classAbstractRecordCommand
-
-