
com.avos.avoscloud.AVSaveOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leancloud-common Show documentation
Show all versions of leancloud-common Show documentation
leancloud java sdk common library
The newest version!
package com.avos.avoscloud;
/**
* Created by lbt05 on 1/15/16.
*/
public class AVSaveOption {
AVQuery matchQuery;
boolean fetchWhenSave;
public AVSaveOption setFetchWhenSave(boolean fetchWhenSave) {
this.fetchWhenSave = fetchWhenSave;
return this;
}
public AVSaveOption query(AVQuery query) {
this.matchQuery = query;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy