<T extends Document> java.util.SortedSet<java.lang.String> |
DocumentStore.list(java.lang.Class<T> documentType) |
|
<T extends Document> java.util.SortedSet<java.lang.String> |
DocumentStore.list(java.lang.Class<T> documentType,
long updatedAfter) |
Returns all fingerprints of documents of the given type that have
been updated after the given time in milliseconds since the epoch.
|
<T extends Document> boolean |
DocumentStore.remove(java.lang.Class<T> documentType) |
|
<T extends Document> boolean |
DocumentStore.remove(java.lang.Class<T> documentType,
java.lang.String fingerprint) |
Removes the document with given type and identified by the given
fingerprint.
|
<T extends Document> T |
DocumentStore.retrieve(java.lang.Class<T> documentType,
boolean parse) |
|
<T extends Document> T |
DocumentStore.retrieve(java.lang.Class<T> documentType,
boolean parse,
java.lang.String fingerprint) |
Retrieves the document with given type and identified by the given
fingerprint, and either parses it or returns it unparsed.
|
<T extends Document> boolean |
DocumentStore.store(T document) |
|
<T extends Document> boolean |
DocumentStore.store(T document,
java.lang.String fingerprint) |
Stores the given document using the given fingerprint as
identifier.
|