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)
ItemListDaoinsertAll in interface ItemListDaopublic void delete(ItemList itemList)
ItemListDaodelete in interface ItemListDaopublic void update(ItemList itemList)
ItemListDaoupdate in interface ItemListDaopublic java.util.List<ItemList> getAll()
ItemListDaogetAll in interface ItemListDaopublic ItemList findById(int id)
ItemListDaofindById in interface ItemListDaoid - the id of the item listpublic int countItemLists()
countItemLists in interface ItemListDao