public class ItemListLineDao_Impl extends java.lang.Object implements ItemListLineDao
| Constructor and Description |
|---|
ItemListLineDao_Impl(android.arch.persistence.room.RoomDatabase __db) |
| Modifier and Type | Method and Description |
|---|---|
int |
countItemListLinesInList(int itemListId) |
void |
delete(ItemListLine itemListLine)
Delete an item list line in the database
|
ItemListLine |
findById(int id)
Retrieves an item list line from the database
|
java.util.List<ItemListLine> |
getAll()
Retrieves a list of item list lines in the database
|
java.util.List<ItemListLine> |
getByItemListId(int itemListId)
Retrieves an item list line from the database
|
void |
insertAll(ItemListLine... itemListLines)
Insert one or more item list lines in the database
|
void |
update(ItemListLine itemListLine)
Update an item list line in the database
|
public ItemListLineDao_Impl(android.arch.persistence.room.RoomDatabase __db)
public void insertAll(ItemListLine... itemListLines)
ItemListLineDaoinsertAll in interface ItemListLineDaopublic void delete(ItemListLine itemListLine)
ItemListLineDaodelete in interface ItemListLineDaopublic void update(ItemListLine itemListLine)
ItemListLineDaoupdate in interface ItemListLineDaopublic java.util.List<ItemListLine> getAll()
ItemListLineDaogetAll in interface ItemListLineDaopublic java.util.List<ItemListLine> getByItemListId(int itemListId)
ItemListLineDaogetByItemListId in interface ItemListLineDaoitemListId - the item list idpublic ItemListLine findById(int id)
ItemListLineDaofindById in interface ItemListLineDaoid - the item list line idpublic int countItemListLinesInList(int itemListId)
countItemListLinesInList in interface ItemListLineDao