Package | Description |
---|---|
com.arangodb | |
com.arangodb.impl |
Modifier and Type | Method and Description |
---|---|
<T> DocumentCursor<T> |
ArangoDriver.executeDocumentQuery(String query,
Map<String,Object> bindVars,
AqlQueryOptions aqlQueryOptions,
Class<T> clazz)
This method executes an AQL query and returns a DocumentCursor
|
<T> DocumentCursor<T> |
ArangoDriver.executeSimpleAllDocuments(String collectionName,
int skip,
int limit,
Class<T> clazz)
Returns all documents of a collections.
|
<T> DocumentCursor<T> |
InternalSimpleDriver.executeSimpleAllDocuments(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz) |
<T> DocumentCursor<T> |
ArangoDriver.executeSimpleByExampleDocuments(String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz)
This will find all documents matching a given example.
|
<T> DocumentCursor<T> |
InternalSimpleDriver.executeSimpleByExampleDocuments(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz) |
<T> DocumentCursor<T> |
ArangoDriver.executeSimpleFulltextWithDocuments(String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz)
This will find all documents from the collection that match the fulltext
query specified in query.
|
<T> DocumentCursor<T> |
InternalSimpleDriver.executeSimpleFulltextWithDocuments(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz) |
<T> DocumentCursor<T> |
ArangoDriver.executeSimpleRangeWithDocuments(String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz)
This will find all documents within a given range.
|
<T> DocumentCursor<T> |
InternalSimpleDriver.executeSimpleRangeWithDocuments(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz) |
Modifier and Type | Method and Description |
---|---|
<T> DocumentCursor<T> |
InternalSimpleDriverImpl.executeSimpleAllDocuments(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz) |
<T> DocumentCursor<T> |
InternalSimpleDriverImpl.executeSimpleByExampleDocuments(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz) |
<T> DocumentCursor<T> |
InternalSimpleDriverImpl.executeSimpleFulltextWithDocuments(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz) |
<T> DocumentCursor<T> |
InternalSimpleDriverImpl.executeSimpleRangeWithDocuments(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz) |
Copyright © 2012–2016 ArangoDB GmbH. All rights reserved.