Package | Description |
---|---|
com.arangodb | |
com.arangodb.entity | |
com.arangodb.entity.marker | |
com.arangodb.impl |
Modifier and Type | Class and Description |
---|---|
class |
BaseCursorProxy<T,S extends DocumentEntity<T>> |
class |
DocumentCursorResult<T,S extends DocumentEntity<T>> |
Modifier and Type | Method and Description |
---|---|
<T,S extends DocumentEntity<T>> |
ArangoDriver.executeAqlQueryWithDocumentCursorResutl(String query,
Map<String,Object> bindVars,
AqlQueryOptions aqlQueryOptions,
Class<S> classDocumentEntity,
Class<T> clazz)
This method executes an AQL query and returns a DocumentCursorResult
|
<T,S extends DocumentEntity<T>> |
InternalCursorDriver.executeBaseCursorQuery(String database,
String query,
Map<String,Object> bindVars,
AqlQueryOptions aqlQueryOptions,
Class<S> classDocumentEntity,
Class<T> clazz) |
Modifier and Type | Method and Description |
---|---|
DocumentEntity<?> |
ArangoDriver.createDocument(long collectionId,
Object value)
Creates a document in the collection defined by The collection id
|
DocumentEntity<?> |
ArangoDriver.createDocument(long collectionId,
String documentKey,
Object value)
Creates a document in the collection defined by the collection's name.
|
DocumentEntity<?> |
ArangoDriver.createDocument(long collectionId,
String documentKey,
Object value,
Boolean createCollection,
Boolean waitForSync)
Creates a document in the collection defined by the collection's id.
|
<T> DocumentEntity<T> |
ArangoDriver.createDocument(long collectionId,
T value,
Boolean createCollection,
Boolean waitForSync)
Creates a document in the collection defined by The collection id.
|
<T> DocumentEntity<T> |
InternalDocumentDriver.createDocument(String database,
String collectionName,
String documentKey,
T value,
Boolean createCollection,
Boolean waitForSync) |
<T> DocumentEntity<T> |
ArangoDriver.createDocument(String collectionName,
String documentKey,
T value)
Creates a document in the collection defined by the collection's name.
|
<T> DocumentEntity<T> |
ArangoDriver.createDocument(String collectionName,
String documentKey,
T value,
Boolean createCollection,
Boolean waitForSync)
Creates a document in the collection defined by the collection's name.
|
<T> DocumentEntity<T> |
ArangoDriver.createDocument(String collectionName,
T value)
Creates a document in the collection defined by the collection's name
|
<T> DocumentEntity<T> |
ArangoDriver.createDocument(String collectionName,
T value,
Boolean createCollection,
Boolean waitForSync)
Creates a document in the collection defined by the collection's name.
|
DocumentEntity<String> |
InternalDocumentDriver.createDocumentRaw(String database,
String collectionName,
String documentKey,
String rawJsonString,
Boolean createCollection,
Boolean waitForSync) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(long collectionId,
long documentId)
Deletes a document from the database.
|
DocumentEntity<?> |
ArangoDriver.deleteDocument(long collectionId,
long documentId,
Long rev,
Policy policy)
Deletes a document from the database.
|
DocumentEntity<?> |
ArangoDriver.deleteDocument(long collectionId,
String documentKey)
Deletes a document from the database.
|
DocumentEntity<?> |
ArangoDriver.deleteDocument(long collectionId,
String documentKey,
Long rev,
Policy policy)
Deletes a document from the database.
|
DocumentEntity<?> |
ArangoDriver.deleteDocument(String documentHandle)
Deletes a document from the database.
|
DocumentEntity<?> |
ArangoDriver.deleteDocument(String collectionName,
long documentId)
Deletes a document from the database.
|
DocumentEntity<?> |
ArangoDriver.deleteDocument(String collectionName,
long documentId,
Long rev,
Policy policy)
Deletes a document from the database.
|
DocumentEntity<?> |
ArangoDriver.deleteDocument(String documentHandle,
Long rev,
Policy policy)
Deletes a document from the database.
|
DocumentEntity<?> |
ArangoDriver.deleteDocument(String collectionName,
String documentKey)
Deletes a document from the database.
|
DocumentEntity<?> |
InternalDocumentDriver.deleteDocument(String database,
String documentHandle,
Long rev,
Policy policy) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(String collectionName,
String documentKey,
Long rev,
Policy policy)
Deletes a document from the database.
|
<T> DocumentEntity<T> |
ArangoDriver.getDocument(long collectionId,
long documentId,
Class<T> clazz)
Returns a document entity.
|
<T> DocumentEntity<T> |
ArangoDriver.getDocument(long collectionId,
String documentKey,
Class<T> clazz)
Returns a document entity.
|
<T> DocumentEntity<T> |
ArangoDriver.getDocument(String documentHandle,
Class<T> clazz)
Returns a document entity.
|
<T> DocumentEntity<T> |
ArangoDriver.getDocument(String documentHandle,
Class<T> clazz,
Long ifNoneMatchRevision,
Long ifMatchRevision)
Returns a document entity.
|
<T> DocumentEntity<T> |
ArangoDriver.getDocument(String collectionName,
long documentId,
Class<T> clazz)
Returns a document entity.
|
<T> DocumentEntity<T> |
ArangoDriver.getDocument(String collectionName,
String documentKey,
Class<T> clazz)
Returns a document entity.
|
<T> DocumentEntity<T> |
InternalDocumentDriver.getDocument(String database,
String documentHandle,
Class<T> clazz,
Long ifNoneMatchRevision,
Long ifMatchRevision) |
DocumentEntity<?> |
ArangoDriver.replaceDocument(long collectionId,
long documentId,
Object value)
This method replaces the content of the document defined by documentId.
|
<T> DocumentEntity<T> |
ArangoDriver.replaceDocument(long collectionId,
long documentId,
T value,
Long rev,
Policy policy,
Boolean waitForSync)
This method replaces the content of the document defined by documentId.
|
DocumentEntity<?> |
ArangoDriver.replaceDocument(long collectionId,
String documentKey,
Object value,
Long rev,
Policy policy,
Boolean waitForSync)
This method replaces the content of the document defined by documentKey.
|
<T> DocumentEntity<T> |
ArangoDriver.replaceDocument(long collectionId,
String documentKey,
T value)
This method replaces the content of the document defined by documentKey.
|
DocumentEntity<?> |
ArangoDriver.replaceDocument(String collectionName,
long documentId,
Object value,
Long rev,
Policy policy,
Boolean waitForSync)
This method replaces the content of the document defined by documentId.
|
<T> DocumentEntity<T> |
ArangoDriver.replaceDocument(String collectionName,
long documentId,
T value)
This method replaces the content of the document defined by documentId.
|
DocumentEntity<?> |
ArangoDriver.replaceDocument(String collectionName,
String documentKey,
Object value,
Long rev,
Policy policy,
Boolean waitForSync)
This method replaces the content of the document defined by documentKey.
|
<T> DocumentEntity<T> |
ArangoDriver.replaceDocument(String collectionName,
String documentKey,
T value)
This method replaces the content of the document defined by documentKey.
|
<T> DocumentEntity<T> |
InternalDocumentDriver.replaceDocument(String database,
String documentHandle,
T value,
Long rev,
Policy policy,
Boolean waitForSync) |
<T> DocumentEntity<T> |
ArangoDriver.replaceDocument(String documentHandle,
T value)
This method replaces the content of the document defined by
documentHandle.
|
<T> DocumentEntity<T> |
ArangoDriver.replaceDocument(String documentHandle,
T value,
Long rev,
Policy policy,
Boolean waitForSync)
This method replaces the content of the document defined by
documentHandle.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
long documentId,
Object value)
This method updates a document defined by documentId.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
long documentId,
Object value,
Boolean keepNull)
This method updates a document defined by documentId.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
long documentId,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull)
This method updates a document defined by documentId.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
String documentKey,
Object value)
This method updates a document defined by documentKey.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
String documentKey,
Object value,
Boolean keepNull)
This method updates a document defined by documentKey.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
String documentKey,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull)
This method updates a document defined by documentKey.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
long documentId,
Object value)
This method updates a document defined by documentId.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
long documentId,
Object value,
Boolean keepNull)
This method updates a document defined by documentId.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
long documentId,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull)
This method updates a document defined by documentId.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
String documentKey,
Object value)
This method updates a document defined by documentKey.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
String documentKey,
Object value,
Boolean keepNull)
This method updates a document defined by documentKey.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
String documentKey,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull)
This method updates a document defined by documentKey.
|
<T> DocumentEntity<T> |
InternalDocumentDriver.updateDocument(String database,
String documentHandle,
T value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull) |
<T> DocumentEntity<T> |
ArangoDriver.updateDocument(String documentHandle,
T value)
This method updates a document defined by documentHandle.
|
<T> DocumentEntity<T> |
ArangoDriver.updateDocument(String documentHandle,
T value,
Boolean keepNull)
This method updates a document defined by documentKey.
|
<T> DocumentEntity<T> |
ArangoDriver.updateDocument(String documentHandle,
T value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull)
This method updates a document defined by documentHandle.
|
Modifier and Type | Method and Description |
---|---|
<T> CursorEntity<DocumentEntity<T>> |
ArangoDriver.executeSimpleAllWithDocument(String collectionName,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleAllWithDocument(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleAllWithDocumentResultSet(String collectionName,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleAllWithDocumentResultSet(String database,
String collectionName,
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.
|
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleByExampleWithDocument(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleByExampleWithDocumentResultSet(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleByExampleWithDocumentResusltSet(String collectionName,
Map<String,Object> example,
int skip,
int limit,
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.
|
<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> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleFulltextWithDocumentResultSet(String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz)
Deprecated.
|
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleFulltextWithDocumentResultSet(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
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.
|
<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> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleRangeWithDocumentResultSet(String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleRangeWithDocumentResultSet(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz)
Deprecated.
|
List<DocumentEntity<UserEntity>> |
ArangoDriver.getUsersDocument()
Returns all database user as document.
|
Constructor and Description |
---|
BaseCursorTest(DocumentCursorResult<T,DocumentEntity<T>> baseCursor) |
DocumentCursor(DocumentCursorResult<T,DocumentEntity<T>> baseCursor) |
Modifier and Type | Class and Description |
---|---|
class |
EdgeEntity<T> |
class |
TraversalEntity<V,T> |
Modifier and Type | Method and Description |
---|---|
DocumentEntity<?> |
EntityDeserializers.DocumentEntityDeserializer.deserialize(com.google.gson.JsonElement json,
Type typeOfT,
com.google.gson.JsonDeserializationContext context) |
DocumentEntity<T> |
ReplicationDumpRecord.getData() |
DocumentEntity<T> |
ScalarExampleEntity.getDocument() |
DocumentEntity<T> |
DocumentResultEntity.getOne()
Returns the first document from the list
|
Modifier and Type | Method and Description |
---|---|
List<DocumentEntity<T>> |
DocumentResultEntity.getResult() |
Modifier and Type | Method and Description |
---|---|
void |
ReplicationDumpRecord.setData(DocumentEntity<T> data) |
void |
ScalarExampleEntity.setDocument(DocumentEntity<T> document) |
Modifier and Type | Method and Description |
---|---|
void |
DocumentResultEntity.setResult(List<DocumentEntity<T>> result) |
Modifier and Type | Class and Description |
---|---|
class |
VertexEntity<T> |
Modifier and Type | Method and Description |
---|---|
<T,S extends DocumentEntity<T>> |
InternalCursorDriverImpl.executeBaseCursorQuery(String database,
String query,
Map<String,Object> bindVars,
AqlQueryOptions aqlQueryOptions,
Class<S> classDocumentEntity,
Class<T> clazz) |
Modifier and Type | Method and Description |
---|---|
<T> DocumentEntity<T> |
InternalDocumentDriverImpl.createDocument(String database,
String collectionName,
String documentKey,
T value,
Boolean createCollection,
Boolean waitForSync) |
DocumentEntity<String> |
InternalDocumentDriverImpl.createDocumentRaw(String database,
String collectionName,
String documentKey,
String rawJsonString,
Boolean createCollection,
Boolean waitForSync) |
DocumentEntity<?> |
InternalDocumentDriverImpl.deleteDocument(String database,
String documentHandle,
Long rev,
Policy policy) |
<T> DocumentEntity<T> |
InternalDocumentDriverImpl.getDocument(String database,
String documentHandle,
Class<T> clazz,
Long ifNoneMatchRevision,
Long ifMatchRevision) |
<T> DocumentEntity<T> |
InternalDocumentDriverImpl.replaceDocument(String database,
String documentHandle,
T value,
Long rev,
Policy policy,
Boolean waitForSync) |
<T> DocumentEntity<T> |
InternalDocumentDriverImpl.updateDocument(String database,
String documentHandle,
T value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull) |
Modifier and Type | Method and Description |
---|---|
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleAllWithDocument(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleAllWithDocumentResultSet(String database,
String collectionName,
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> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleByExampleWithDocumentResultSet(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
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> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleFulltextWithDocumentResultSet(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
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> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleRangeWithDocumentResultSet(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz) |
Copyright © 2012–2015 ArangoDB GmbH. All rights reserved.