Package | Description |
---|---|
com.arangodb | |
com.arangodb.entity | |
com.arangodb.impl |
Modifier and Type | Method and Description |
---|---|
DocumentEntity<?> |
ArangoDriver.createDocument(long collectionId,
Object value) |
DocumentEntity<?> |
ArangoDriver.createDocument(long collectionId,
Object value,
Boolean createCollection,
Boolean waitForSync) |
DocumentEntity<?> |
ArangoDriver.createDocument(long collectionId,
String documentKey,
Object value) |
DocumentEntity<?> |
ArangoDriver.createDocument(long collectionId,
String documentKey,
Object value,
Boolean createCollection,
Boolean waitForSync) |
<T> DocumentEntity<T> |
ArangoDriver.createDocument(String collectionName,
Object value) |
<T> DocumentEntity<T> |
ArangoDriver.createDocument(String collectionName,
Object value,
Boolean createCollection,
Boolean waitForSync) |
<T> DocumentEntity<T> |
ArangoDriver.createDocument(String collectionName,
String documentKey,
Object value) |
<T> DocumentEntity<T> |
ArangoDriver.createDocument(String collectionName,
String documentKey,
Object value,
Boolean createCollection,
Boolean waitForSync) |
<T> DocumentEntity<T> |
InternalDocumentDriver.createDocument(String database,
String collectionName,
String documentKey,
Object value,
Boolean createCollection,
Boolean waitForSync) |
<T> DocumentEntity<T> |
InternalDocumentDriver.createDocumentRaw(String database,
String collectionName,
String documentKey,
String rawJsonString,
Boolean createCollection,
Boolean waitForSync) |
<T> DocumentEntity<T> |
InternalGraphDriver.createVertex(String database,
String graphName,
String collectionName,
T vertex,
Boolean waitForSync)
Stores a new vertex with the information contained within the document into
the given collection.
|
DocumentEntity<?> |
ArangoDriver.deleteDocument(long collectionId,
long documentId) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(long collectionId,
long documentId,
Long rev,
Policy policy) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(long collectionId,
String documentKey) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(long collectionId,
String documentKey,
Long rev,
Policy policy) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(String documentHandle) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(String collectionName,
long documentId) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(String collectionName,
long documentId,
Long rev,
Policy policy) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(String documentHandle,
Long rev,
Policy policy) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(String collectionName,
String documentKey) |
DocumentEntity<?> |
ArangoDriver.deleteDocument(String collectionName,
String documentKey,
Long rev,
Policy policy) |
DocumentEntity<?> |
InternalDocumentDriver.deleteDocument(String database,
String documentHandle,
Long rev,
Policy policy) |
<T> DocumentEntity<T> |
ArangoDriver.getDocument(long collectionId,
long documentId,
Class<?> clazz) |
<T> DocumentEntity<T> |
ArangoDriver.getDocument(long collectionId,
String documentKey,
Class<?> clazz) |
<T> DocumentEntity<T> |
ArangoDriver.getDocument(String documentHandle,
Class<?> clazz) |
<T> DocumentEntity<T> |
ArangoDriver.getDocument(String documentHandle,
Class<?> clazz,
Long ifNoneMatchRevision,
Long ifMatchRevision) |
<T> DocumentEntity<T> |
ArangoDriver.getDocument(String collectionName,
long documentId,
Class<?> clazz) |
<T> DocumentEntity<T> |
ArangoDriver.getDocument(String collectionName,
String documentKey,
Class<?> clazz) |
<T> DocumentEntity<T> |
InternalDocumentDriver.getDocument(String database,
String documentHandle,
Class<?> clazz,
Long ifNoneMatchRevision,
Long ifMatchRevision) |
<T> DocumentEntity<T> |
InternalGraphDriver.getVertex(String database,
String graphName,
String collectionName,
String key,
Class<?> clazz,
Long rev,
Long ifNoneMatchRevision,
Long ifMatchRevision)
Gets a vertex with the given key if it is contained within your graph.
|
<T> DocumentEntity<T> |
ArangoDriver.graphCreateVertex(String graphName,
String collectionName,
T vertex,
Boolean waitForSync)
Stores a new vertex with the information contained within the document into
the given collection.
|
<T> DocumentEntity<T> |
ArangoDriver.graphGetVertex(String graphName,
String collectionName,
String key,
Class<?> clazz)
Gets a vertex with the given key if it is contained within your graph.
|
<T> DocumentEntity<T> |
ArangoDriver.graphGetVertex(String graphName,
String collectionName,
String key,
Class<?> clazz,
Long rev,
Long ifNoneMatchRevision,
Long ifMatchRevision)
Gets a vertex with the given key if it is contained within your graph.
|
<T> DocumentEntity<T> |
ArangoDriver.graphReplaceVertex(String graphName,
String collectionName,
String key,
Object vertex)
Replaces a vertex with the given key by the content in the body.
|
<T> DocumentEntity<T> |
ArangoDriver.graphReplaceVertex(String graphName,
String collectionName,
String key,
Object vertex,
Boolean waitForSync,
Long rev,
Long ifMatchRevision)
Replaces a vertex with the given key by the content in the body.
|
<T> DocumentEntity<T> |
ArangoDriver.graphUpdateVertex(String graphName,
String collectionName,
String key,
Object vertex,
Boolean keepNull)
Updates a vertex with the given key by adding the content in the body.
|
<T> DocumentEntity<T> |
ArangoDriver.graphUpdateVertex(String graphName,
String collectionName,
String key,
Object vertex,
Boolean keepNull,
Boolean waitForSync,
Long rev,
Long ifMatchRevision)
Updates a vertex with the given key by adding the content in the body.
|
DocumentEntity<?> |
ArangoDriver.replaceDocument(long collectionId,
long documentId,
Object value) |
DocumentEntity<?> |
ArangoDriver.replaceDocument(long collectionId,
long documentId,
Object value,
Long rev,
Policy policy,
Boolean waitForSync) |
DocumentEntity<?> |
ArangoDriver.replaceDocument(long collectionId,
String documentKey,
Object value) |
DocumentEntity<?> |
ArangoDriver.replaceDocument(long collectionId,
String documentKey,
Object value,
Long rev,
Policy policy,
Boolean waitForSync) |
DocumentEntity<?> |
ArangoDriver.replaceDocument(String collectionName,
long documentId,
Object value) |
DocumentEntity<?> |
ArangoDriver.replaceDocument(String collectionName,
long documentId,
Object value,
Long rev,
Policy policy,
Boolean waitForSync) |
<T> DocumentEntity<T> |
ArangoDriver.replaceDocument(String documentHandle,
Object value) |
<T> DocumentEntity<T> |
ArangoDriver.replaceDocument(String documentHandle,
Object value,
Long rev,
Policy policy,
Boolean waitForSync) |
DocumentEntity<?> |
ArangoDriver.replaceDocument(String collectionName,
String documentKey,
Object value) |
DocumentEntity<?> |
ArangoDriver.replaceDocument(String collectionName,
String documentKey,
Object value,
Long rev,
Policy policy,
Boolean waitForSync) |
<T> DocumentEntity<T> |
InternalDocumentDriver.replaceDocument(String database,
String documentHandle,
Object value,
Long rev,
Policy policy,
Boolean waitForSync) |
<T> DocumentEntity<T> |
InternalGraphDriver.replaceVertex(String database,
String graphName,
String collectionName,
String key,
Object vertex,
Boolean waitForSync,
Long rev,
Long ifMatchRevision)
Replaces a vertex with the given key by the content in the body.
|
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
long documentId,
Object value) |
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
long documentId,
Object value,
Boolean keepNull) |
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
long documentId,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull) |
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
String documentKey,
Object value) |
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
String documentKey,
Object value,
Boolean keepNull) |
DocumentEntity<?> |
ArangoDriver.updateDocument(long collectionId,
String documentKey,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull) |
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
long documentId,
Object value) |
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
long documentId,
Object value,
Boolean keepNull) |
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
long documentId,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull) |
<T> DocumentEntity<T> |
ArangoDriver.updateDocument(String documentHandle,
Object value) |
<T> DocumentEntity<T> |
ArangoDriver.updateDocument(String documentHandle,
Object value,
Boolean keepNull) |
<T> DocumentEntity<T> |
ArangoDriver.updateDocument(String documentHandle,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull) |
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
String documentKey,
Object value) |
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
String documentKey,
Object value,
Boolean keepNull) |
DocumentEntity<?> |
ArangoDriver.updateDocument(String collectionName,
String documentKey,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull) |
<T> DocumentEntity<T> |
InternalDocumentDriver.updateDocument(String database,
String documentHandle,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull) |
<T> DocumentEntity<T> |
InternalGraphDriver.updateVertex(String databaseName,
String graphName,
String collectionName,
String key,
Object vertex,
Boolean keepNull,
Boolean waitForSync,
Long rev,
Long ifMatchRevision)
Updates a vertex with the given key by adding the content in the body.
|
Modifier and Type | Method and Description |
---|---|
<T> CursorEntity<DocumentEntity<T>> |
ArangoDriver.executeSimpleAllWithDocument(String collectionName,
int skip,
int limit,
Class<?> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleAllWithDocument(String database,
String collectionName,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleAllWithDocumentResultSet(String collectionName,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleAllWithDocumentResultSet(String database,
String collectionName,
int skip,
int limit,
Class<?> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
ArangoDriver.executeSimpleByExampleWithDocument(String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<?> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleByExampleWithDocument(String database,
String collectionName,
Map<String,Object> example,
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) |
<T> CursorEntity<DocumentEntity<T>> |
ArangoDriver.executeSimpleFulltextWithDocument(String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<?> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleFulltextWithDocument(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleFulltextWithDocumentResultSet(String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleFulltextWithDocumentResultSet(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<?> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
ArangoDriver.executeSimpleRangeWithDocument(String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<?> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleRangeWithDocument(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
ArangoDriver.executeSimpleRangeWithDocumentResultSet(String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriver.executeSimpleRangeWithDocumentResultSet(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<?> clazz) |
List<DocumentEntity<UserEntity>> |
ArangoDriver.getUsersDocument() |
Modifier and Type | Class and Description |
---|---|
class |
EdgeEntity<T> |
Modifier and Type | Method and Description |
---|---|
DocumentEntity<?> |
EntityDeserializers.DocumentEntityDeserializer.deserialize(com.google.gson.JsonElement json,
Type typeOfT,
com.google.gson.JsonDeserializationContext context) |
DocumentEntity<?> |
EntityDeserializers.VertexEntityDeserializer.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() |
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 | Method and Description |
---|---|
<T> DocumentEntity<T> |
InternalDocumentDriverImpl.createDocument(String database,
String collectionName,
String documentKey,
Object value,
Boolean createCollection,
Boolean waitForSync) |
<T> DocumentEntity<T> |
InternalDocumentDriverImpl.createDocumentRaw(String database,
String collectionName,
String documentKey,
String rawJsonString,
Boolean createCollection,
Boolean waitForSync) |
<T> DocumentEntity<T> |
InternalGraphDriverImpl.createVertex(String database,
String graphName,
String collectionName,
T vertex,
Boolean waitForSync) |
DocumentEntity<?> |
InternalDocumentDriverImpl.deleteDocument(String database,
String documentHandle,
Long rev,
Policy policy) |
<T> DocumentEntity<T> |
InternalDocumentDriverImpl.getDocument(String database,
String documentHandle,
Class<?> clazz,
Long ifNoneMatchRevision,
Long ifMatchRevision) |
<T> DocumentEntity<T> |
InternalGraphDriverImpl.getVertex(String databaseName,
String graphName,
String collectionName,
String key,
Class<?> clazz,
Long rev,
Long ifNoneMatchRevision,
Long ifMatchRevision) |
<T> DocumentEntity<T> |
InternalDocumentDriverImpl.replaceDocument(String database,
String documentHandle,
Object value,
Long rev,
Policy policy,
Boolean waitForSync) |
<T> DocumentEntity<T> |
InternalGraphDriverImpl.replaceVertex(String databaseName,
String graphName,
String collectionName,
String key,
Object vertex,
Boolean waitForSync,
Long rev,
Long ifMatchRevision) |
<T> DocumentEntity<T> |
InternalDocumentDriverImpl.updateDocument(String database,
String documentHandle,
Object value,
Long rev,
Policy policy,
Boolean waitForSync,
Boolean keepNull) |
<T> DocumentEntity<T> |
InternalGraphDriverImpl.updateVertex(String databaseName,
String graphName,
String collectionName,
String key,
Object vertex,
Boolean keepNull,
Boolean waitForSync,
Long rev,
Long ifMatchRevision) |
Modifier and Type | Method and Description |
---|---|
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleAllWithDocument(String database,
String collectionName,
int skip,
int limit,
Class<?> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleAllWithDocumentResultSet(String database,
String collectionName,
int skip,
int limit,
Class<?> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleByExampleWithDocument(String database,
String collectionName,
Map<String,Object> example,
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> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleFulltextWithDocument(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
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> CursorEntity<DocumentEntity<T>> |
InternalSimpleDriverImpl.executeSimpleRangeWithDocument(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
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) |
Copyright © 2012–2014 ArangoDB GmbH. All rights reserved.