android.arch.persistence.room.Update Java Examples

The following examples show how to use android.arch.persistence.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: BookDao.java    From android-persistence with Apache License 2.0 4 votes vote down vote up
@Update(onConflict = REPLACE)
void updateBook(Book book);
 
Example #2
Source File: TopicDetailDao.java    From JReadHub with GNU General Public License v3.0 4 votes vote down vote up
@Update
int  updateTopic(@NonNull TopicDetailBean topicBean);
 
Example #3
Source File: BaseDao.java    From Tok-Android with GNU General Public License v3.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
int update(T obj);
 
Example #4
Source File: HoardDAO.java    From Wrox-ProfessionalAndroid-4E with Apache License 2.0 4 votes vote down vote up
@Update
public void updateHoard(Hoard hoard);
 
Example #5
Source File: AppInfoDao.java    From SABS with MIT License 4 votes vote down vote up
@Update
void update(AppInfo appInfo);
 
Example #6
Source File: BlockUrlProviderDao.java    From SABS with MIT License 4 votes vote down vote up
@Update
void updateBlockUrlProviders(BlockUrlProvider... blockUrlProviders);
 
Example #7
Source File: RideDao.java    From android-ponewheel with MIT License 4 votes vote down vote up
@Update
void updateRide(Ride ride);
 
Example #8
Source File: BookDao.java    From SqliteManager with Apache License 2.0 4 votes vote down vote up
@Update(onConflict = REPLACE)
void updateBook(Book book);
 
Example #9
Source File: LogcatDao.java    From Fairy with Apache License 2.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void updateLogcatItem(LogcatItem item);
 
Example #10
Source File: LogcatDao.java    From Fairy with Apache License 2.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void updateLogcatContent(LogcatContent content);
 
Example #11
Source File: WaitDao.java    From Readhub with Apache License 2.0 4 votes vote down vote up
@Update
void updateWait(Wait wait);
 
Example #12
Source File: LEDDao.java    From LEDView with Apache License 2.0 4 votes vote down vote up
@Update
public void updateLEDEntities(LEDEntity ...entities);
 
Example #13
Source File: ProductDao.java    From RoomDemo with Apache License 2.0 4 votes vote down vote up
@Update
void update(Product product);
 
Example #14
Source File: HoardDAO.java    From Wrox-ProfessionalAndroid-4E with Apache License 2.0 4 votes vote down vote up
@Update
public void updateHoards(Hoard... hoard);
 
Example #15
Source File: IpMessageDao.java    From ShareBox with Apache License 2.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void update(IpMessage sms);
 
Example #16
Source File: PersonDAO.java    From AndroidRoom with GNU General Public License v3.0 4 votes vote down vote up
@Update
public void updatePerson(Person person);
 
Example #17
Source File: CommentDao.java    From OfflineSampleApp with Apache License 2.0 4 votes vote down vote up
@Update
void update(Comment comment);
 
Example #18
Source File: CityDao.java    From Travel-Mate with MIT License 4 votes vote down vote up
@Update
void update(City... city);
 
Example #19
Source File: DaoAccess.java    From journaldev with MIT License 4 votes vote down vote up
@Update
int updateTodo(Todo todo);
 
Example #20
Source File: VideoDao.java    From leanback-showcase with Apache License 2.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void updateVideo(VideoEntity video);
 
Example #21
Source File: HistoryDao.java    From privacy-friendly-qr-scanner with GNU General Public License v3.0 4 votes vote down vote up
@Update
void update(HistoryItem item);
 
Example #22
Source File: SimpleEntityNotNullDao.java    From android-database-performance with Apache License 2.0 4 votes vote down vote up
@Update
void update(SimpleEntityNotNull entity);
 
Example #23
Source File: SimpleEntityNotNullDao.java    From android-database-performance with Apache License 2.0 4 votes vote down vote up
@Update
void update(List<SimpleEntityNotNull> entities);
 
Example #24
Source File: UserDao.java    From codeexamples-android with Eclipse Public License 1.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void updateUser(User user);
 
Example #25
Source File: TaskDao.java    From codeexamples-android with Eclipse Public License 1.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void updateTask(Task task);
 
Example #26
Source File: TrophyDao.java    From codeexamples-android with Eclipse Public License 1.0 4 votes vote down vote up
@Update(onConflict = OnConflictStrategy.REPLACE)
void updateTrophy(Trophy trophy);
 
Example #27
Source File: PortfolioRepository.java    From Building-Professional-Android-Applications with MIT License 4 votes vote down vote up
@Update
void update(StockPortfolioItem item);
 
Example #28
Source File: CredentialDao.java    From android-webauthn-authenticator with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Update
public abstract void update(PublicKeyCredentialSource credential);
 
Example #29
Source File: AppDao.java    From cashuwallet with MIT License 4 votes vote down vote up
@Update
void saveChain(Chain chain);
 
Example #30
Source File: AppDao.java    From cashuwallet with MIT License 4 votes vote down vote up
@Update
void saveMultiwallet(Multiwallet wallet);