androidx.room.Update Java Examples

The following examples show how to use androidx.room.Update. 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: ContactDao.java    From call_manage with MIT License 4 votes vote down vote up
@Update
void update(Contact... contacts);
 
Example #2
Source File: GroupInfoDao.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(GroupInfo info);
 
Example #3
Source File: ProvisionedMeshNodeDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(final ProvisionedMeshNode meshNode);
 
Example #4
Source File: ProvisionedMeshNodesDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(List<ProvisionedMeshNode> nodes);
 
Example #5
Source File: GroupDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(final Group group);
 
Example #6
Source File: GroupsDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(List<Group> groups);
 
Example #7
Source File: ApplicationKeyDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(final ApplicationKey applicationKey);
 
Example #8
Source File: NetworkKeyDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(final NetworkKey networkKey);
 
Example #9
Source File: ApplicationKeysDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(List<ApplicationKey> appKeys);
 
Example #10
Source File: MeshNetworkDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(final MeshNetwork meshNetwork);
 
Example #11
Source File: NetworkKeysDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(List<NetworkKey> netKeys);
 
Example #12
Source File: ProvisionersDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(List<Provisioner> provisioners);
 
Example #13
Source File: BaseDao.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@Update
Single<Integer> update(E entity);
 
Example #14
Source File: BaseDao.java    From ground-android with Apache License 2.0 4 votes vote down vote up
@Update
Completable updateAll(List<E> entities);
 
Example #15
Source File: WordDao.java    From Android-Developer-Fundamentals-Version-2 with GNU General Public License v3.0 4 votes vote down vote up
@Update
void update(Word... word);
 
Example #16
Source File: RoomTransactionDao.java    From Gander with Apache License 2.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
abstract int updateTransaction(PersistentHttpTransaction persistentHttpTransactions);
 
Example #17
Source File: DhikrDao.java    From prayer-times-android with Apache License 2.0 4 votes vote down vote up
@Update
void saveDhikr(Dhikr...dhikr);
 
Example #18
Source File: UserDao.java    From CloudReader with Apache License 2.0 4 votes vote down vote up
@Update
void updateUser(User user);
 
Example #19
Source File: DhikrDao.java    From prayer-times-android with Apache License 2.0 4 votes vote down vote up
@Update
void saveDhikr(Dhikr...dhikr);
 
Example #20
Source File: ScaleUserDAO.java    From openScale with GNU General Public License v3.0 4 votes vote down vote up
@Update
void update(ScaleUser user);
 
Example #21
Source File: ScaleMeasurementDAO.java    From openScale with GNU General Public License v3.0 4 votes vote down vote up
@Update
void update(ScaleMeasurement measurement);
 
Example #22
Source File: ProvisionerDao.java    From Android-nRF-Mesh-Library with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(List<Provisioner> provisioners);
 
Example #23
Source File: GroupMessageDao.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void updateMessages(List<GroupMessage> groupMessages);
 
Example #24
Source File: GroupLiveInfoDao.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(GroupLiveInfo info);
 
Example #25
Source File: VideoDao.java    From tv-samples with Apache License 2.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void updateVideo(VideoEntity video);
 
Example #26
Source File: ContactDAO.java    From VyAPI with MIT License 4 votes vote down vote up
@Update
void update(Contact contact);
 
Example #27
Source File: DaoIdentity.java    From FairEmail with GNU General Public License v3.0 4 votes vote down vote up
@Update
void updateIdentity(EntityIdentity identity);
 
Example #28
Source File: DaoMessage.java    From FairEmail with GNU General Public License v3.0 4 votes vote down vote up
@Update
int updateMessage(EntityMessage message);
 
Example #29
Source File: DaoRule.java    From FairEmail with GNU General Public License v3.0 4 votes vote down vote up
@Update
int updateRule(EntityRule rule);
 
Example #30
Source File: DaoContact.java    From FairEmail with GNU General Public License v3.0 4 votes vote down vote up
@Update
int updateContact(EntityContact contact);