public class ItemListDao_Impl extends java.lang.Object implements ItemListDao
Constructor and Description |
---|
ItemListDao_Impl(android.arch.persistence.room.RoomDatabase __db) |
Modifier and Type | Method and Description |
---|---|
int |
countItemLists() |
void |
delete(ItemList itemList)
Delete an item list in the database
|
ItemList |
findById(int id)
Retrieve an item list from the database
|
java.util.List<ItemList> |
getAll()
Retrieves items lists from the database
|
void |
insertAll(ItemList... itemLists)
Insert one or more item list in the database
|
void |
update(ItemList itemList)
Update an item list in the database
|
public ItemListDao_Impl(android.arch.persistence.room.RoomDatabase __db)
public void insertAll(ItemList... itemLists)
ItemListDao
insertAll
in interface ItemListDao
public void delete(ItemList itemList)
ItemListDao
delete
in interface ItemListDao
public void update(ItemList itemList)
ItemListDao
update
in interface ItemListDao
public java.util.List<ItemList> getAll()
ItemListDao
getAll
in interface ItemListDao
public ItemList findById(int id)
ItemListDao
findById
in interface ItemListDao
id
- the id of the item listpublic int countItemLists()
countItemLists
in interface ItemListDao