androidx.room.Delete Java Examples
The following examples show how to use
androidx.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: StuffStore.java From cwac-saferoom with Apache License 2.0 | 4 votes |
@Delete void delete(Category... categories);
Example #2
Source File: NetworkKeyDao.java From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Delete void delete(final NetworkKey networkKey);
Example #3
Source File: GroupInfoDao.java From bcm-android with GNU General Public License v3.0 | 4 votes |
@Delete void delete(GroupInfo info);
Example #4
Source File: SitePermissionDao.java From FirefoxReality with Mozilla Public License 2.0 | 4 votes |
@Delete void delete(SitePermission site);
Example #5
Source File: SitePermissionDao.java From FirefoxReality with Mozilla Public License 2.0 | 4 votes |
@Delete void delete(List<SitePermission> sites);
Example #6
Source File: MovieDao.java From android-popular-movies-app with Apache License 2.0 | 4 votes |
@Delete void deleteMovie(MovieEntry movieEntry);
Example #7
Source File: ProfileDAO.java From loco-answers with GNU General Public License v3.0 | 4 votes |
@Delete void delete(ProfileEntity profileEntity);
Example #8
Source File: BaseDao.java From ground-android with Apache License 2.0 | 4 votes |
@Delete Completable delete(E entity);
Example #9
Source File: WordDao.java From Android-Developer-Fundamentals-Version-2 with GNU General Public License v3.0 | 4 votes |
@Delete void deleteWord(Word word);
Example #10
Source File: WordDao.java From Android-Developer-Fundamentals-Version-2 with GNU General Public License v3.0 | 4 votes |
@Delete void deleteWord(Word word);
Example #11
Source File: RoomTransactionDao.java From Gander with Apache License 2.0 | 4 votes |
@Delete abstract int deleteTransactions(PersistentHttpTransaction... persistentHttpTransactions);
Example #12
Source File: MeshNetworkDao.java From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Delete void delete(final MeshNetwork meshNetwork);
Example #13
Source File: CredentialDao.java From habpanelviewer with GNU General Public License v3.0 | 4 votes |
@Delete void remove(Credential credential);
Example #14
Source File: HistoryDao.java From SecScanQR with GNU General Public License v3.0 | 4 votes |
@Delete void delete(HistoryEntity history);
Example #15
Source File: UserDao.java From android-mvvm-architecture with Apache License 2.0 | 4 votes |
@Delete void delete(User user);
Example #16
Source File: AppItemDao.java From J2ME-Loader with Apache License 2.0 | 4 votes |
@Delete void delete(AppItem item);
Example #17
Source File: UserDao.java From My-MVP with Apache License 2.0 | 4 votes |
@Delete void delete(UserEntity userEntity);
Example #18
Source File: DhikrDao.java From prayer-times-android with Apache License 2.0 | 4 votes |
@Delete void deleteDhikr(Dhikr...dhikr);
Example #19
Source File: UserDao.java From CloudReader with Apache License 2.0 | 4 votes |
@Delete void deleteUser(User user);
Example #20
Source File: DhikrDao.java From prayer-times-android with Apache License 2.0 | 4 votes |
@Delete void deleteDhikr(Dhikr...dhikr);
Example #21
Source File: ScaleUserDAO.java From openScale with GNU General Public License v3.0 | 4 votes |
@Delete void delete(ScaleUser user);
Example #22
Source File: SearchDao.java From Pixiv-Shaft with MIT License | 4 votes |
@Delete void unMuteTag(TagMuteEntity userEntity);
Example #23
Source File: GroupMessageDao.java From bcm-android with GNU General Public License v3.0 | 4 votes |
@Delete void delete(List<GroupMessage> messages);
Example #24
Source File: GroupLiveInfoDao.java From bcm-android with GNU General Public License v3.0 | 4 votes |
@Delete void delete(GroupLiveInfo info);
Example #25
Source File: ContactDAO.java From VyAPI with MIT License | 4 votes |
@Delete void delete(Contact contact);
Example #26
Source File: ThreadAndEmailDao.java From lttrs-android with Apache License 2.0 | 4 votes |
@Delete abstract void delete(ThreadEntity thread);
Example #27
Source File: OverwriteDao.java From lttrs-android with Apache License 2.0 | 4 votes |
@Delete public abstract void deleteQueryOverwrites(Collection<QueryItemOverwriteEntity> queryItemOverwriteEntity);
Example #28
Source File: GroupMessageDao.java From bcm-android with GNU General Public License v3.0 | 4 votes |
@Delete void delete(GroupMessage message);
Example #29
Source File: ApplicationKeyDao.java From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Delete void delete(final ApplicationKey applicationKey);
Example #30
Source File: IllustRecmdDao.java From Pixiv-Shaft with MIT License | 4 votes |
@Delete void delete(IllustRecmdEntity userEntity);