K - the type of the key emitted by the viewRB - the type of the request builder returned after each set operationpublic static interface SettableViewParameters.Common<K,RB extends RequestBuilder>
| Modifier and Type | Method and Description |
|---|---|
RB |
descending(boolean descending)
Return the documents in ‘descending by key’ order.
|
RB |
endKey(K endkey)
Stop returning records when the specified key is reached.
|
RB |
endKeyDocId(java.lang.String endkey_docid)
Stop returning records when the specified document ID is reached.
|
RB |
includeDocs(boolean include_docs)
Include the full content of the documents in the response.
|
RB |
inclusiveEnd(boolean inclusive_end)
Include rows with the specified endkey.
|
RB |
keys(K... keys)
Return only documents that match the specified key or keys.
|
RB |
stale(java.lang.String stale)
Allow the results from a stale view to be used.
|
RB |
startKey(K startkey)
Return records starting with the specified key.
|
RB |
startKeyDocId(java.lang.String startkey_docid)
Return records starting with the specified document ID.
|
RB descending(boolean descending)
descending - true to return the documents in "descending by key" order,
default falseRB endKey(K endkey)
endkey - of the type emitted by the viewRB endKeyDocId(java.lang.String endkey_docid)
Used to distinguish between records with the same endkey.
endkey_docid - endkey document IDRB includeDocs(boolean include_docs)
Note that using include_docs=true might have performance implications.
include_docs - true to return the full content, default falseRB inclusiveEnd(boolean inclusive_end)
inclusive_end - false to exclude, default trueRB keys(K... keys)
keys - one or more keys of the type emitted by the viewRB stale(java.lang.String stale)
If this parameter is not given, a response is returned only after the view has been built.
See:
stale - string indicating stale view behaviourRB startKey(K startkey)
startkey - of the type emitted by the viewRB startKeyDocId(java.lang.String startkey_docid)
Used to distinguish between records with the same endkey.
startkey_docid - startkey document ID