public interface BehaviorWritable extends BehaviorReadable
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
create(Entity entity,
InsertOption<? extends ConditionBean> option)
Create the entity.
|
void |
createOrModify(Entity entity,
InsertOption<? extends ConditionBean> insertOption,
UpdateOption<? extends ConditionBean> updateOption)
Create or modify the entity.
|
void |
createOrModifyNonstrict(Entity entity,
InsertOption<? extends ConditionBean> insertOption,
UpdateOption<? extends ConditionBean> updateOption)
Create or modify the entity non-strictly.
|
int[] |
lumpCreate(List<? extends Entity> entityList,
InsertOption<? extends ConditionBean> option)
Lump-create the list.
|
int[] |
lumpModify(List<? extends Entity> entityList,
UpdateOption<? extends ConditionBean> option)
Lump-modify the list.
|
int[] |
lumpModifyNonstrict(List<? extends Entity> entityList,
UpdateOption<? extends ConditionBean> option)
Lump-modify the list non-strictly.
|
int[] |
lumpRemove(List<? extends Entity> entityList,
DeleteOption<? extends ConditionBean> option)
Lump-remove the list.
|
int[] |
lumpRemoveNonstrict(List<? extends Entity> entityList,
DeleteOption<? extends ConditionBean> option)
Lump-remove the list non-strictly.
|
void |
modify(Entity entity,
UpdateOption<? extends ConditionBean> option)
Modify the entity.
|
void |
modifyNonstrict(Entity entity,
UpdateOption<? extends ConditionBean> option)
Modify the entity non-strictly.
|
int |
rangeCreate(QueryInsertSetupper<? extends Entity,? extends ConditionBean> setupper,
InsertOption<? extends ConditionBean> option)
Range-create entities.
|
int |
rangeModify(Entity entity,
ConditionBean cb,
UpdateOption<? extends ConditionBean> option)
Range-modify entities.
|
int |
rangeRemove(ConditionBean cb,
DeleteOption<? extends ConditionBean> option)
Range-modify entities.
|
void |
remove(Entity entity,
DeleteOption<? extends ConditionBean> option)
Remove the entity.
|
void |
removeNonstrict(Entity entity,
DeleteOption<? extends ConditionBean> option)
Remove the entity non-strictly.
|
asDBMeta, asTableDbName, newConditionBean, newEntity, readCount, readCursor, readEntity, readEntityWithDeletedCheck, readList, readNextVal, readPage, readScalar, readyOutsideSql, warmUpCommandvoid create(Entity entity, InsertOption<? extends ConditionBean> option)
entity - The instance of corresponding entity. (NotNull)option - The option of insert. (NullAllowed: if null, same as insert())void modify(Entity entity, UpdateOption<? extends ConditionBean> option)
entity - The instance of corresponding entity. (NotNull)option - The option of update. (NullAllowed: if null, same as update())void modifyNonstrict(Entity entity, UpdateOption<? extends ConditionBean> option)
entity - The instance of corresponding entity. (NotNull)option - The option of update. (NullAllowed: if null, same as updateNonstrict())void createOrModify(Entity entity, InsertOption<? extends ConditionBean> insertOption, UpdateOption<? extends ConditionBean> updateOption)
entity - The instance of corresponding entity. (NotNull)insertOption - The option of insert. (NullAllowed)updateOption - The option of update. (NullAllowed)void createOrModifyNonstrict(Entity entity, InsertOption<? extends ConditionBean> insertOption, UpdateOption<? extends ConditionBean> updateOption)
entity - The instance of corresponding entity. (NotNull)insertOption - The option of insert. (NullAllowed)updateOption - The option of update. (NullAllowed)void remove(Entity entity, DeleteOption<? extends ConditionBean> option)
entity - The instance of corresponding entity. (NotNull)option - The option of delete. (NullAllowed: if null, same as delete())void removeNonstrict(Entity entity, DeleteOption<? extends ConditionBean> option)
entity - The instance of corresponding entity. (NotNull)option - The option of delete. (NullAllowed: if null, same as deleteNonstrict())int[] lumpCreate(List<? extends Entity> entityList, InsertOption<? extends ConditionBean> option)
entityList - The list of corresponding entity. (NotNull and NotEmpty)option - The option of insert. (NullAllowed: if null, same as batchInsert())int[] lumpModify(List<? extends Entity> entityList, UpdateOption<? extends ConditionBean> option)
entityList - The list of corresponding entity. (NotNull and NotEmpty)option - The option of update. (NullAllowed: if null, same as batchUpdate())int[] lumpModifyNonstrict(List<? extends Entity> entityList, UpdateOption<? extends ConditionBean> option)
entityList - The list of corresponding entity. (NotNull and NotEmpty)option - The option of update. (NullAllowed: if null, same as batchUpdateNonstrict())int[] lumpRemove(List<? extends Entity> entityList, DeleteOption<? extends ConditionBean> option)
entityList - The list of entity. (NotNull and NotEmpty)option - The option of delete. (NullAllowed: if null, same as batchDelete())int[] lumpRemoveNonstrict(List<? extends Entity> entityList, DeleteOption<? extends ConditionBean> option)
entityList - The list of corresponding entity. (NotNull and NotEmpty)option - The option of delete. (NullAllowed: if null, same as batchDeleteNonstrict())int rangeCreate(QueryInsertSetupper<? extends Entity,? extends ConditionBean> setupper, InsertOption<? extends ConditionBean> option)
setupper - The set-upper for query-insert. (NotNull)option - The option of update. (NullAllowed: if null, same as queryUpdate())int rangeModify(Entity entity, ConditionBean cb, UpdateOption<? extends ConditionBean> option)
entity - The instance of corresponding entity. (NotNull)cb - The corresponding condition-bean for query. (NotNull)option - The option of update. (NullAllowed: if null, same as queryUpdate())int rangeRemove(ConditionBean cb, DeleteOption<? extends ConditionBean> option)
cb - The corresponding condition-bean for query. (NotNull)option - The option of delete. (NullAllowed: if null, same as queryDelete())Copyright © 2014–2015 The DBFlute Project. All rights reserved.