| Package | Description |
|---|---|
| org.jboss.aerogear.android.store.sql |
| Modifier and Type | Method and Description |
|---|---|
boolean |
EncryptedSQLStore.isEmpty()
Checks if the storage system contains no stored elements.
|
boolean |
SQLStore.isEmpty()
Checks if the storage system contains no stored elements.
|
T |
EncryptedSQLStore.read(Serializable id)
Reads a specific object/record from the underlying storage system.
|
T |
SQLStore.read(Serializable id)
Reads a specific object/record from the underlying storage system.
|
Collection<T> |
EncryptedSQLStore.readAll()
Reads all the data from the underlying storage system.
|
Collection<T> |
SQLStore.readAll()
Reads all the data from the underlying storage system.
|
List<T> |
SQLStore.readWithFilter(org.jboss.aerogear.android.core.ReadFilter filter)
Search for objects/records from the underlying storage system.
|
void |
EncryptedSQLStore.remove(Serializable id)
Removes a specific object/record from the underlying storage system.
|
void |
SQLStore.remove(Serializable id)
Removes a specific object/record from the underlying storage system.
|
void |
EncryptedSQLStore.reset()
Resets the entire storage system.
|
void |
SQLStore.reset()
Resets the entire storage system.
|
void |
EncryptedSQLStore.save(Collection<T> items)
Saves the given objects in the underlying storage system.
|
void |
SQLStore.save(Collection<T> items)
Saves the given objects in the underlying storage system.
|
void |
EncryptedSQLStore.save(T item)
Saves the given object in the underlying storage system.
|
void |
SQLStore.save(T item)
Saves the given object in the underlying storage system.
|
Copyright © 2015 JBoss by Red Hat. All rights reserved.