Package | Description |
---|---|
com.arangodb | |
com.arangodb.entity | |
com.arangodb.impl |
Modifier and Type | Method and Description |
---|---|
DocumentEntity<?> |
ArangoDriver.deleteDocument(long collectionId,
long documentId,
Long rev,
Policy policy)
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 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<?> |
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.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.
|
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.
|
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> |
InternalDocumentDriver.replaceDocument(String database,
String documentHandle,
T value,
Long rev,
Policy policy,
Boolean waitForSync) |
<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,
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,
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,
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,
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,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull)
This method updates a document defined by documentHandle.
|
Modifier and Type | Method and Description |
---|---|
static Policy |
Policy.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Policy[] |
Policy.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
DocumentEntity<?> |
InternalDocumentDriverImpl.deleteDocument(String database,
String documentHandle,
Long rev,
Policy policy) |
<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) |
Copyright © 2012–2015 ArangoDB GmbH. All rights reserved.