We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I store the following object in TinyDB:
import java.io.Serializable; public class Image implements Serializable{ private String name; private String small, medium, large; private String timestamp; public Image() { } public Image(String name, String small, String medium, String large, String timestamp) { this.name = name; this.small = small; this.medium = medium; this.large = large; this.timestamp = timestamp; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getSmall() { return small; } public void setSmall(String small) { this.small = small; } public String getMedium() { return medium; } public void setMedium(String medium) { this.medium = medium; } public String getLarge() { return large; } public void setLarge(String large) { this.large = large; } public String getTimestamp() { return timestamp; } public void setTimestamp(String timestamp) { this.timestamp = timestamp; } }
I can retrieve the object like this: ArrayList<Object> img_aux = tinydb.getListObject("Favorites", Image.class);
ArrayList<Object> img_aux = tinydb.getListObject("Favorites", Image.class);
Could I look for a SPECIFIC STRING within the Favorites key?
Favorites
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I store the following object in TinyDB:
I can retrieve the object like this:
ArrayList<Object> img_aux = tinydb.getListObject("Favorites", Image.class);
Could I look for a SPECIFIC STRING within the
Favorites
key?The text was updated successfully, but these errors were encountered: