Uses of Class
org.ektorp.ViewQuery

Packages that use ViewQuery
org.ektorp   
org.ektorp.impl   
org.ektorp.support   
 

Uses of ViewQuery in org.ektorp
 

Methods in org.ektorp that return ViewQuery
 ViewQuery ViewQuery.allDocs()
          Will automatically set the query special _all_docs URI.
 ViewQuery ViewQuery.dbPath(java.lang.String s)
           
 ViewQuery ViewQuery.descending(boolean b)
          View rows are sorted by the key; specifying descending=true will reverse their order.
 ViewQuery ViewQuery.designDocId(java.lang.String s)
           
 ViewQuery ViewQuery.endDocId(java.lang.String s)
           
 ViewQuery ViewQuery.endKey(boolean b)
           
 ViewQuery ViewQuery.endKey(double d)
           
 ViewQuery ViewQuery.endKey(float f)
           
 ViewQuery ViewQuery.endKey(int i)
           
 ViewQuery ViewQuery.endKey(long l)
           
 ViewQuery ViewQuery.endKey(java.lang.Object o)
           
 ViewQuery ViewQuery.endKey(java.lang.String s)
           
 ViewQuery ViewQuery.group(boolean b)
          The group option controls whether the reduce function reduces to a set of distinct keys or to a single result row.
 ViewQuery ViewQuery.groupLevel(int i)
           
 ViewQuery ViewQuery.includeDocs(boolean b)
          The include_docs option will include the associated document.
 ViewQuery ViewQuery.inclusiveEnd(boolean b)
          The inclusive_end option controls whether the endkey is included in the result.
 ViewQuery ViewQuery.key(boolean b)
           
 ViewQuery ViewQuery.key(double d)
           
 ViewQuery ViewQuery.key(float f)
           
 ViewQuery ViewQuery.key(int i)
           
 ViewQuery ViewQuery.key(long l)
           
 ViewQuery ViewQuery.key(java.lang.Object o)
           
 ViewQuery ViewQuery.key(java.lang.String s)
           
 ViewQuery ViewQuery.keys(java.util.Collection<?> keyList)
          For multiple-key queries (as of CouchDB 0.9).
 ViewQuery ViewQuery.limit(int i)
          limit=0 you don't get any data, but all meta-data for this View.
 ViewQuery ViewQuery.listName(java.lang.String s)
           
 ViewQuery ViewQuery.queryParam(java.lang.String name, java.lang.String value)
           
 ViewQuery ViewQuery.reduce(boolean b)
          If a view contains both a map and reduce function, querying that view will by default return the result of the reduce function.
 ViewQuery ViewQuery.skip(int i)
          The skip option should only be used with small values, as skipping a large range of documents this way is inefficient (it scans the index from the startkey and then skips N elements, but still needs to read all the index values to do that).
 ViewQuery ViewQuery.staleOk(boolean b)
          The stale option can be used for higher performance at the cost of possibly not seeing the all latest data.
 ViewQuery ViewQuery.startDocId(java.lang.String s)
           
 ViewQuery ViewQuery.startKey(boolean b)
           
 ViewQuery ViewQuery.startKey(double d)
           
 ViewQuery ViewQuery.startKey(float f)
           
 ViewQuery ViewQuery.startKey(int i)
           
 ViewQuery ViewQuery.startKey(long l)
           
 ViewQuery ViewQuery.startKey(java.lang.Object o)
           
 ViewQuery ViewQuery.startKey(java.lang.String s)
           
 ViewQuery ViewQuery.viewName(java.lang.String s)
           
 

Methods in org.ektorp with parameters of type ViewQuery
 java.io.InputStream CouchDbConnector.queryForStream(ViewQuery query)
           
 ViewResult CouchDbConnector.queryView(ViewQuery query)
           
<T> java.util.List<T>
CouchDbConnector.queryView(ViewQuery query, java.lang.Class<T> type)
          This method requires the view result values to be document ids or documents : If the value is a document id, then the document is fetched from couchDB.
 

Uses of ViewQuery in org.ektorp.impl
 

Methods in org.ektorp.impl with parameters of type ViewQuery
 java.io.InputStream StdCouchDbConnector.queryForStream(ViewQuery query)
           
 ViewResult StdCouchDbConnector.queryView(ViewQuery query)
           
<T> java.util.List<T>
StdCouchDbConnector.queryView(ViewQuery query, java.lang.Class<T> type)
           
 

Uses of ViewQuery in org.ektorp.support
 

Methods in org.ektorp.support that return ViewQuery
protected  ViewQuery CouchDbRepositorySupport.createQuery(java.lang.String viewName)
          Creates a ViewQuery pre-configured with correct dbPath, design document id and view name.
 



Copyright © 2011. All Rights Reserved.