Package | Description |
---|---|
com.arangodb | |
com.arangodb.impl | |
com.arangodb.util |
Modifier and Type | Method and Description |
---|---|
<T> CursorResultSet<T> |
ArangoDriver.executeQueryWithResultSet(String query,
Map<String,Object> bindVars,
Class<T> clazz,
Boolean calcCount,
Integer batchSize)
This method executes an AQL query and returns a CursorResultSet
|
<T> CursorResultSet<T> |
InternalCursorDriver.executeQueryWithResultSet(String database,
String query,
Map<String,Object> bindVars,
Class<T> clazz,
Boolean calcCount,
Integer batchSize) |
<T> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleAllWithDocumentResultSet(String collectionName,
int skip,
int limit,
Class<?> clazz)
Returns all documents of a collections.
|
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleAllWithDocumentResultSet(String database,
String collectionName,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<T> |
ArangoDriver.executeSimpleAllWithResultSet(String collectionName,
int skip,
int limit,
Class<?> clazz)
Returns all documents of a collections.
|
<T> CursorResultSet<T> |
InternalSimpleDriver.executeSimpleAllWithResultSet(String database,
String collectionName,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleByExampleWithDocumentResultSet(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleByExampleWithDocumentResusltSet(String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<?> clazz)
This will find all documents matching a given example.
|
<T> CursorResultSet<T> |
InternalSimpleDriver.executeSimpleByExampleWithResultSet(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<T> |
ArangoDriver.executeSimpleByExampleWithResusltSet(String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<?> clazz)
This will find all documents matching a given example.
|
<T> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleFulltextWithDocumentResultSet(String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<?> clazz)
This will find all documents from the collection that match the fulltext
query specified in query.
|
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleFulltextWithDocumentResultSet(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<?> clazz) |
<T> CursorResultSet<T> |
ArangoDriver.executeSimpleFulltextWithResultSet(String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<?> clazz)
This will find all documents from the collection that match the fulltext
query specified in query.
|
<T> CursorResultSet<T> |
InternalSimpleDriver.executeSimpleFulltextWithResultSet(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleRangeWithDocumentResultSet(String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<?> clazz)
This will find all documents within a given range.
|
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleRangeWithDocumentResultSet(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<T> |
ArangoDriver.executeSimpleRangeWithResultSet(String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<?> clazz)
This will find all documents within a given range.
|
<T> CursorResultSet<T> |
InternalSimpleDriver.executeSimpleRangeWithResultSet(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<?> clazz) |
Modifier and Type | Method and Description |
---|---|
<T> CursorResultSet<T> |
InternalCursorDriverImpl.executeQueryWithResultSet(String database,
String query,
Map<String,Object> bindVars,
Class<T> clazz,
Boolean calcCount,
Integer batchSize) |
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleAllWithDocumentResultSet(String database,
String collectionName,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<T> |
InternalSimpleDriverImpl.executeSimpleAllWithResultSet(String database,
String collectionName,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleByExampleWithDocumentResultSet(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<T> |
InternalSimpleDriverImpl.executeSimpleByExampleWithResultSet(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleFulltextWithDocumentResultSet(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<?> clazz) |
<T> CursorResultSet<T> |
InternalSimpleDriverImpl.executeSimpleFulltextWithResultSet(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleRangeWithDocumentResultSet(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<T> |
InternalSimpleDriverImpl.executeSimpleRangeWithResultSet(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<?> clazz) |
Modifier and Type | Method and Description |
---|---|
static <T> List<T> |
ResultSetUtils.toList(CursorResultSet<T> rs) |
Copyright © 2012–2015 ArangoDB GmbH. All rights reserved.