public class EnemyListDao_Impl extends java.lang.Object implements EnemyListDao
| Constructor and Description |
|---|
EnemyListDao_Impl(android.arch.persistence.room.RoomDatabase __db) |
| Modifier and Type | Method and Description |
|---|---|
int |
countEnemyLists() |
void |
delete(EnemyList enemyList)
Delete an enemy list in the database
|
EnemyList |
findById(int id)
Retrieve an enemy list from the database
|
java.util.List<EnemyList> |
getAll()
Retrieve all enemy lists from the database
|
void |
insertAll(EnemyList... enemyLists)
Insert one or more enemy lists in the database
|
void |
update(EnemyList enemyList)
Update an enemy list in the database
|
public EnemyListDao_Impl(android.arch.persistence.room.RoomDatabase __db)
public void insertAll(EnemyList... enemyLists)
EnemyListDaoinsertAll in interface EnemyListDaopublic void delete(EnemyList enemyList)
EnemyListDaodelete in interface EnemyListDaopublic void update(EnemyList enemyList)
EnemyListDaoupdate in interface EnemyListDaopublic java.util.List<EnemyList> getAll()
EnemyListDaogetAll in interface EnemyListDaopublic EnemyList findById(int id)
EnemyListDaofindById in interface EnemyListDaopublic int countEnemyLists()
countEnemyLists in interface EnemyListDao