android.arch.persistence.room.Delete Java Examples
The following examples show how to use
android.arch.persistence.room.Delete.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ProductDao.java From RoomDemo with Apache License 2.0 | 4 votes |
@Delete void delete(Product product);
Example #2
Source File: EosAccountDao.java From EosCommander with MIT License | 4 votes |
@Delete void delete( EosAccount account);
Example #3
Source File: UserLocationDao.java From Expert-Android-Programming with MIT License | 4 votes |
@Delete void deleteUserLocation(UserLocation userLocation);
Example #4
Source File: PersonDAO.java From AndroidRoom with GNU General Public License v3.0 | 4 votes |
@Delete public void deletePerson(Person person);
Example #5
Source File: OrganizationDao.java From GSoC-Info-Android with GNU General Public License v2.0 | 4 votes |
@Delete void deleteAllOrganizations(List<Organization> organizations);
Example #6
Source File: UserDao.java From Android-Debug-Database with Apache License 2.0 | 4 votes |
@Delete void delete(User user);
Example #7
Source File: UserDao.java From Android-Debug-Database with Apache License 2.0 | 4 votes |
@Delete void delete(User user);
Example #8
Source File: CityDao.java From Travel-Mate with MIT License | 4 votes |
@Delete void delete(City... city);
Example #9
Source File: WidgetCheckListDao.java From Travel-Mate with MIT License | 4 votes |
@Delete void delete(ChecklistItem... checkItem);
Example #10
Source File: ChecklistItemDAO.java From Travel-Mate with MIT License | 4 votes |
@Delete void deleteItem(ChecklistItem item);
Example #11
Source File: DaoAccess.java From journaldev with MIT License | 4 votes |
@Delete int deleteTodo(Todo todo);
Example #12
Source File: HistoryDao.java From privacy-friendly-qr-scanner with GNU General Public License v3.0 | 4 votes |
@Delete void delete(HistoryItem entry);
Example #13
Source File: ProjectDao.java From GSoC-Info-Android with GNU General Public License v2.0 | 4 votes |
@Delete void deleteAllProjects(List<Project> projects);
Example #14
Source File: UserDao.java From android-persistence with Apache License 2.0 | 4 votes |
@Delete void deleteUsers(User user1, User user2);
Example #15
Source File: UserDao.java From android-persistence with Apache License 2.0 | 4 votes |
@Delete void deleteUser(User user);
Example #16
Source File: BitsharesDao.java From bitshares_wallet with MIT License | 4 votes |
@Delete void deleteBalance(List<BitsharesAsset> bitsharesAssetList);
Example #17
Source File: LEDDao.java From LEDView with Apache License 2.0 | 4 votes |
@Delete public void deleteLEDEntities(LEDEntity ...entities);
Example #18
Source File: WaitDao.java From Readhub with Apache License 2.0 | 4 votes |
@Delete void deleteWait(Wait wait);
Example #19
Source File: LogcatDao.java From Fairy with Apache License 2.0 | 4 votes |
@Delete void deleteLogcatItem(LogcatItem item);
Example #20
Source File: UserDao.java From SqliteManager with Apache License 2.0 | 4 votes |
@Delete void deleteUsers(User user1, User user2);
Example #21
Source File: UserDao.java From SqliteManager with Apache License 2.0 | 4 votes |
@Delete void deleteUser(User user);
Example #22
Source File: RideDao.java From android-ponewheel with MIT License | 4 votes |
@Delete void delete(List<Ride> rides);
Example #23
Source File: ProductDao.java From RoomDagger2Demo with Apache License 2.0 | 4 votes |
@Delete int delete(Product product);
Example #24
Source File: BlockUrlProviderDao.java From SABS with MIT License | 4 votes |
@Delete void delete(BlockUrlProvider blockUrlProvider);
Example #25
Source File: UserBlockUrlDao.java From SABS with MIT License | 4 votes |
@Delete void delete(UserBlockUrl userBlockUrl);
Example #26
Source File: WhiteUrlDao.java From SABS with MIT License | 4 votes |
@Delete void delete(WhiteUrl whiteUrl);
Example #27
Source File: EarthquakeDAO.java From Wrox-ProfessionalAndroid-4E with Apache License 2.0 | 4 votes |
@Delete public void deleteEarthquake(Earthquake earthquake);
Example #28
Source File: EarthquakeDAO.java From Wrox-ProfessionalAndroid-4E with Apache License 2.0 | 4 votes |
@Delete public void deleteEarthquake(Earthquake earthquake);
Example #29
Source File: BaseDao.java From Tok-Android with GNU General Public License v3.0 | 4 votes |
@Delete int delete(T obj);
Example #30
Source File: EarthquakeDAO.java From Wrox-ProfessionalAndroid-4E with Apache License 2.0 | 4 votes |
@Delete public void deleteEarthquake(Earthquake earthquake);