Uses of Class
com.couchbase.client.java.view.ViewQuery
| Package | Description |
|---|---|
| com.couchbase.client.java | |
| com.couchbase.client.java.view |
-
Uses of ViewQuery in com.couchbase.client.java
Methods in com.couchbase.client.java with parameters of type ViewQuery Modifier and Type Method Description rx.Observable<AsyncViewResult>AsyncBucket. query(ViewQuery query)Queries a Couchbase ServerView.rx.Observable<AsyncViewResult>AsyncBucket. query(ViewQuery query, long timeout, TimeUnit timeUnit)Queries a Couchbase ServerView.ViewResultBucket. query(ViewQuery query)Queries a Couchbase ServerViewwith thedefault view timeout.ViewResultBucket. query(ViewQuery query, long timeout, TimeUnit timeUnit)Queries a Couchbase ServerViewwith a custom timeout.rx.Observable<AsyncViewResult>CouchbaseAsyncBucket. query(ViewQuery query)rx.Observable<AsyncViewResult>CouchbaseAsyncBucket. query(ViewQuery query, long timeout, TimeUnit timeUnit)ViewResultCouchbaseBucket. query(ViewQuery query)ViewResultCouchbaseBucket. query(ViewQuery query, long timeout, TimeUnit timeUnit) -
Uses of ViewQuery in com.couchbase.client.java.view
Methods in com.couchbase.client.java.view that return ViewQuery Modifier and Type Method Description ViewQueryViewQuery. debug()Enabled debugging on view queries.ViewQueryViewQuery. debug(boolean debug)ViewQueryViewQuery. descending()Return the documents in descending by key order.ViewQueryViewQuery. descending(boolean desc)ViewQueryViewQuery. development()ViewQueryViewQuery. development(boolean development)ViewQueryViewQuery. endKey(boolean key)ViewQueryViewQuery. endKey(double key)ViewQueryViewQuery. endKey(int key)ViewQueryViewQuery. endKey(long key)ViewQueryViewQuery. endKey(JsonArray key)ViewQueryViewQuery. endKey(JsonObject key)ViewQueryViewQuery. endKey(String key)ViewQueryViewQuery. endKeyDocId(String id)static ViewQueryViewQuery. from(String design, String view)Creates an newViewQuery.ViewQueryViewQuery. group()Group the results using the reduce function to a group or single row.ViewQueryViewQuery. group(boolean group)ViewQueryViewQuery. groupLevel(int grouplevel)Specify the group level to be used.ViewQueryViewQuery. includeDocs()Proactively load the full document for the row returned.ViewQueryViewQuery. includeDocs(boolean includeDocs)Proactively load the full document for the row returned.ViewQueryViewQuery. includeDocs(boolean includeDocs, Class<? extends Document<?>> target)Proactively load the full document for the row returned.ViewQueryViewQuery. includeDocs(Class<? extends Document<?>> target)Proactively load the full document for the row returned.ViewQueryViewQuery. includeDocsOrdered()Proactively load the full document for the row returned, while strictly retaining view row order.ViewQueryViewQuery. includeDocsOrdered(boolean includeDocs)Proactively load the full document for the row returned, while strictly retaining view row order.ViewQueryViewQuery. includeDocsOrdered(boolean includeDocs, Class<? extends Document<?>> target)Proactively load the full document for the row returned, while strictly retaining view row order.ViewQueryViewQuery. includeDocsOrdered(Class<? extends Document<?>> target)Proactively load the full document for the row returned, while strictly retaining view row order.ViewQueryViewQuery. inclusiveEnd()Specifies whether the specified end key should be included in the result.ViewQueryViewQuery. inclusiveEnd(boolean inclusive)ViewQueryViewQuery. key(boolean key)ViewQueryViewQuery. key(double key)ViewQueryViewQuery. key(int key)ViewQueryViewQuery. key(long key)ViewQueryViewQuery. key(JsonArray key)ViewQueryViewQuery. key(JsonObject key)ViewQueryViewQuery. key(String key)ViewQueryViewQuery. keys(JsonArray keys)ViewQueryViewQuery. limit(int limit)Limit the number of the returned documents to the specified number.ViewQueryViewQuery. onError(OnError onError)Sets the response in the event of an error.ViewQueryViewQuery. reduce()ViewQueryViewQuery. reduce(boolean reduce)Explicitly enable/disable the reduce function on the query.ViewQueryViewQuery. skip(int skip)Skip this number of records before starting to return the results.ViewQueryViewQuery. stale(Stale stale)Allow the results from a stale view to be used.ViewQueryViewQuery. startKey(boolean key)ViewQueryViewQuery. startKey(double key)ViewQueryViewQuery. startKey(int key)ViewQueryViewQuery. startKey(long key)ViewQueryViewQuery. startKey(JsonArray key)ViewQueryViewQuery. startKey(JsonObject key)ViewQueryViewQuery. startKey(String key)ViewQueryViewQuery. startKeyDocId(String id)Methods in com.couchbase.client.java.view with parameters of type ViewQuery Modifier and Type Method Description static rx.Observable<AsyncViewResult>ViewQueryResponseMapper. mapToViewResult(AsyncBucket bucket, ViewQuery query, ViewQueryResponse response)Maps a rawViewQueryResponseinto aAsyncViewResult.