Package | Description |
---|---|
com.arangodb | |
com.arangodb.entity | |
com.arangodb.impl |
Modifier and Type | Method and Description |
---|---|
<T> CursorEntity<T> |
ArangoDriver.continueQuery(long cursorId,
Class<?>... clazz)
Continues data retrieval for an existing cursor
|
<T> CursorEntity<T> |
InternalCursorDriver.continueQuery(String database,
long cursorId,
Class<?>... clazz) |
<T> CursorEntity<T> |
ArangoDriver.executeCursorEntityQuery(String query,
Map<String,Object> bindVars,
Boolean calcCount,
Integer batchSize,
Boolean fullCount,
Class<?>... clazz)
This method executes an AQL query and returns a CursorEntity.
|
<T> CursorEntity<T> |
InternalCursorDriver.executeCursorEntityQuery(String database,
String query,
Map<String,Object> bindVars,
AqlQueryOptions aqlQueryOptions,
Class<?>... clazz) |
<T> CursorEntity<T> |
ArangoDriver.executeQuery(String query,
Map<String,Object> bindVars,
Class<T> clazz,
Boolean calcCount,
Integer batchSize)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.executeDocumentQuery(String, Map, AqlQueryOptions, Class) |
<T> CursorEntity<T> |
ArangoDriver.executeQuery(String query,
Map<String,Object> bindVars,
Class<T> clazz,
Boolean calcCount,
Integer batchSize,
Boolean fullCount)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.executeDocumentQuery(String, Map, AqlQueryOptions, Class) |
<T> CursorEntity<T> |
InternalCursorDriver.executeQuery(String database,
String query,
Map<String,Object> bindVars,
Class<T> clazz,
Boolean calcCount,
Integer batchSize,
Boolean fullCount)
Deprecated.
|
<T> CursorEntity<T> |
ArangoDriver.executeSimpleAll(String collectionName,
int skip,
int limit,
Class<T> clazz)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.executeSimpleAllDocuments(String, int, int, Class) |
<T> CursorEntity<T> |
InternalSimpleDriver.executeSimpleAll(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorEntity<DocumentEntity<T>> |
ArangoDriver.executeSimpleAllWithDocument(String collectionName,
int skip,
int limit,
Class<T> clazz)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.executeSimpleAllDocuments(String, int, int, Class) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleAllWithDocument(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorEntity<T> |
ArangoDriver.executeSimpleByExample(String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.executeSimpleByExampleDocuments(String, Map, int, int, Class) |
<T> CursorEntity<T> |
InternalSimpleDriver.executeSimpleByExample(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorEntity<DocumentEntity<T>> |
ArangoDriver.executeSimpleByExampleWithDocument(String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.executeSimpleByExampleDocuments(String, Map, int, int, Class) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleByExampleWithDocument(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorEntity<T> |
ArangoDriver.executeSimpleFulltext(String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.executeSimpleFulltextWithDocuments(String, String, String, int, int, String, Class) |
<T> CursorEntity<T> |
InternalSimpleDriver.executeSimpleFulltext(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz)
Deprecated.
|
<T> CursorEntity<DocumentEntity<T>> |
ArangoDriver.executeSimpleFulltextWithDocument(String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.executeSimpleFulltextWithDocuments(String, String, String, int, int, String, Class) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleFulltextWithDocument(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz)
Deprecated.
|
<T> CursorEntity<T> |
ArangoDriver.executeSimpleRange(String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.executeSimpleRangeWithDocuments(String, String, Object, Object, Boolean, int, int, Class) |
<T> CursorEntity<T> |
InternalSimpleDriver.executeSimpleRange(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorEntity<DocumentEntity<T>> |
ArangoDriver.executeSimpleRangeWithDocument(String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.executeSimpleRangeWithDocuments(String, String, Object, Object, Boolean, int, int, Class) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleRangeWithDocument(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorEntity<EdgeEntity<T>> |
InternalGraphDriver.getEdges(String database,
String graphName,
String vertexKey,
Class<T> clazz,
Integer batchSize,
Integer limit,
Boolean count,
Direction direction,
Collection<String> labels,
ArangoDriver driver,
FilterCondition... properties)
Deprecated.
|
CursorEntity<T> |
CursorResult.getEntity()
Returns the CursorEntity object
|
CursorEntity<PlainEdgeEntity> |
ArangoDriver.graphGetEdges(String graphName)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.graphGetEdgeCursor(String, Class, Object, GraphEdgesOptions, AqlQueryOptions) |
<T> CursorEntity<T> |
ArangoDriver.graphGetEdges(String graphName,
Class<T> clazz,
String vertexDocumentHandle)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.graphGetEdgeCursor(String, Class, Object, GraphEdgesOptions, AqlQueryOptions) |
<T> CursorEntity<T> |
ArangoDriver.graphGetEdgesByExampleMap(String graphName,
Class<T> clazz,
Map<String,Object> vertexExample)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.graphGetEdgeCursorByExample(String, Class, Object) |
<T> CursorEntity<T> |
ArangoDriver.graphGetEdgesByExampleObject(String graphName,
Class<T> clazz,
Object vertexExample)
Deprecated.
As of release 2.5.4, replaced by
ArangoDriver.graphGetEdgeCursorByExample(String, Class, Object) |
CursorEntity<?> |
ArangoDriver.validateQuery(String query)
This method validates a given AQL query string and returns a CursorEntity
|
CursorEntity<?> |
InternalCursorDriver.validateQuery(String database,
String query) |
Constructor and Description |
---|
CursorRawResult(String database,
InternalCursorDriver cursorDriver,
CursorEntity<com.google.gson.JsonObject> entity,
Class<?>... clazz) |
CursorResult(String database,
InternalCursorDriver cursorDriver,
CursorEntity<T> entity,
Class<?>... clazz) |
CursorResultSet(String database,
InternalCursorDriver cursorDriver,
CursorEntity<T> entity,
Class<?>... clazz) |
DocumentCursorResult(String database,
InternalCursorDriver cursorDriver,
CursorEntity<S> entity,
Class<?>... clazz) |
Modifier and Type | Method and Description |
---|---|
CursorEntity<?> |
EntityDeserializers.CursorEntityDeserializer.deserialize(com.google.gson.JsonElement json,
Type typeOfT,
com.google.gson.JsonDeserializationContext context) |
Modifier and Type | Method and Description |
---|---|
<T> CursorEntity<T> |
InternalCursorDriverImpl.continueQuery(String database,
long cursorId,
Class<?>... clazz) |
<T> CursorEntity<T> |
InternalCursorDriverImpl.executeCursorEntityQuery(String database,
String query,
Map<String,Object> bindVars,
AqlQueryOptions aqlQueryOptions,
Class<?>... clazz) |
<T> CursorEntity<T> |
InternalCursorDriverImpl.executeQuery(String database,
String query,
Map<String,Object> bindVars,
Class<T> clazz,
Boolean calcCount,
Integer batchSize,
Boolean fullCount)
Deprecated.
|
<T> CursorEntity<T> |
InternalSimpleDriverImpl.executeSimpleAll(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleAllWithDocument(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz) |
<T> CursorEntity<T> |
InternalSimpleDriverImpl.executeSimpleByExample(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleByExampleWithDocument(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz) |
<T> CursorEntity<T> |
InternalSimpleDriverImpl.executeSimpleFulltext(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleFulltextWithDocument(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz) |
<T> CursorEntity<T> |
InternalSimpleDriverImpl.executeSimpleRange(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleRangeWithDocument(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz) |
<T> CursorEntity<EdgeEntity<T>> |
InternalGraphDriverImpl.getEdges(String database,
String graphName,
String vertexKey,
Class<T> clazz,
Integer batchSize,
Integer limit,
Boolean count,
Direction direction,
Collection<String> labels,
ArangoDriver driver,
FilterCondition... properties) |
CursorEntity<?> |
InternalCursorDriverImpl.validateQuery(String database,
String query) |
Copyright © 2012–2016 ArangoDB GmbH. All rights reserved.