public class AttackListLineDao_Impl extends java.lang.Object implements AttackListLineDao
| Constructor and Description |
|---|
AttackListLineDao_Impl(android.arch.persistence.room.RoomDatabase __db) |
| Modifier and Type | Method and Description |
|---|---|
int |
countAttackListLinesInList(int attackListId) |
void |
delete(AttackListLine attackListLine)
Delete an attack list line in the database
|
AttackListLine |
findById(int id)
Retrieve an attack list line by id from the database
|
java.util.List<AttackListLine> |
getAll()
Select all attack list lines in the database
|
java.util.List<AttackListLine> |
getByAttackListId(int attackListId)
Select all attack list lines in the database corresponding to an attack list
|
void |
insertAll(AttackListLine... attackListLines)
Insert one or more attack list lines in the database
|
void |
update(AttackListLine attackListLine)
Update an attack list lien in the database
|
public AttackListLineDao_Impl(android.arch.persistence.room.RoomDatabase __db)
public void insertAll(AttackListLine... attackListLines)
AttackListLineDaoinsertAll in interface AttackListLineDaopublic void delete(AttackListLine attackListLine)
AttackListLineDaodelete in interface AttackListLineDaopublic void update(AttackListLine attackListLine)
AttackListLineDaoupdate in interface AttackListLineDaopublic java.util.List<AttackListLine> getAll()
AttackListLineDaogetAll in interface AttackListLineDaopublic java.util.List<AttackListLine> getByAttackListId(int attackListId)
AttackListLineDaogetByAttackListId in interface AttackListLineDaoattackListId - the attack list idpublic AttackListLine findById(int id)
AttackListLineDaofindById in interface AttackListLineDaopublic int countAttackListLinesInList(int attackListId)
countAttackListLinesInList in interface AttackListLineDao