Package | Description |
---|---|
com.arangodb | |
com.arangodb.entity | |
com.arangodb.impl |
Modifier and Type | Method and Description |
---|---|
<T> EdgeEntity<T> |
InternalGraphDriver.createEdge(String database,
String graphName,
String edgeCollectionName,
String key,
String fromHandle,
String toHandle,
T value,
Boolean waitForSync) |
<T> EdgeEntity<T> |
InternalEdgeDriver.createEdge(String graphName,
String collectionName,
T object,
String from,
String to,
Boolean createCollection,
Boolean waitForSync) |
<T> EdgeEntity<T> |
ArangoDriver.createEdge(String collectionName,
T object,
String from,
String to,
Boolean createCollection,
Boolean waitForSync)
Create an edge in an edge collection.
|
<T> EdgeEntity<T> |
InternalGraphDriver.getEdge(String database,
String graphName,
String edgeCollectionName,
String key,
Class<T> clazz,
Long ifMatchRevision,
Long ifNoneMatchRevision)
Loads an edge with the given key if it is contained within your graph.
|
<T> EdgeEntity<T> |
ArangoDriver.graphCreateEdge(String graphName,
String edgeCollectionName,
String key,
String fromHandle,
String toHandle)
Stores a new edge with the information contained within the body into the
given collection.
|
<T> EdgeEntity<T> |
ArangoDriver.graphCreateEdge(String graphName,
String edgeCollectionName,
String key,
String fromHandle,
String toHandle,
T value,
Boolean waitForSync)
Stores a new edge with the information contained within the body into the
given collection.
|
<T> EdgeEntity<T> |
ArangoDriver.graphCreateEdge(String graphName,
String edgeCollectionName,
String fromHandle,
String toHandle,
T value,
Boolean waitForSync)
Stores a new edge with the information contained within the body into the
given collection.
|
<T> EdgeEntity<T> |
ArangoDriver.graphGetEdge(String graphName,
String edgeCollectionName,
String key,
Class<T> clazz)
Loads an edge with the given key if it is contained within your graph.
|
<T> EdgeEntity<T> |
ArangoDriver.graphGetEdge(String graphName,
String edgeCollectionName,
String key,
Class<T> clazz,
Long ifMatchRevision,
Long ifNoneMatchRevision)
Loads an edge with the given key if it is contained within your graph.
|
<T> EdgeEntity<T> |
ArangoDriver.graphReplaceEdge(String graphName,
String edgeCollectionName,
String key,
T value)
Replaces an edge with the given key by the content in the body.
|
<T> EdgeEntity<T> |
ArangoDriver.graphReplaceEdge(String graphName,
String edgeCollectionName,
String key,
T value,
Boolean waitForSync,
Long ifMatchRevision,
Long ifNoneMatchRevision)
Replaces an edge with the given key by the content in the body.
|
<T> EdgeEntity<T> |
ArangoDriver.graphUpdateEdge(String graphName,
String edgeCollectionName,
String key,
T value,
Boolean keepNull)
Updates an edge with the given key by adding the content in the body.
|
<T> EdgeEntity<T> |
ArangoDriver.graphUpdateEdge(String graphName,
String edgeCollectionName,
String key,
T value,
Boolean waitForSync,
Boolean keepNull,
Long ifMatchRevision,
Long ifNoneMatchRevision)
Updates an edge with the given key by adding the content in the body.
|
<T> EdgeEntity<T> |
InternalGraphDriver.replaceEdge(String database,
String graphName,
String edgeCollectionName,
String key,
T value,
Boolean waitForSync,
Long ifMatchRevision,
Long ifNoneMatchRevision)
Replaces an edge with the given key by the content in the body.
|
<T> EdgeEntity<T> |
InternalGraphDriver.updateEdge(String database,
String graphName,
String edgeCollectionName,
String key,
T value,
Boolean waitForSync,
Boolean keepNull,
Long ifMatchRevision,
Long ifNoneMatchRevision)
Updates an edge with the given key by adding the content in the body.
|
Modifier and Type | Method and Description |
---|---|
<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.
|
Constructor and Description |
---|
EdgeCursor(DocumentCursorResult<T,EdgeEntity<T>> baseCursor) |
Modifier and Type | Method and Description |
---|---|
EdgeEntity<?> |
EntityDeserializers.EdgeEntityDeserializer.deserialize(com.google.gson.JsonElement json,
Type typeOfT,
com.google.gson.JsonDeserializationContext context) |
Modifier and Type | Method and Description |
---|---|
List<EdgeEntity<E>> |
PathEntity.getEdges() |
List<EdgeEntity<E>> |
ShortestPathEntity.getEdges()
Returns the list of edges of the shortest path.
|
Modifier and Type | Method and Description |
---|---|
void |
PathEntity.setEdges(List<EdgeEntity<E>> edges) |
void |
ShortestPathEntity.setEdges(List<EdgeEntity<E>> edges) |
Modifier and Type | Method and Description |
---|---|
<T> EdgeEntity<T> |
InternalGraphDriverImpl.createEdge(String database,
String graphName,
String edgeCollectionName,
String key,
String fromHandle,
String toHandle,
T value,
Boolean waitForSync) |
<T> EdgeEntity<T> |
InternalEdgeDriverImpl.createEdge(String database,
String collectionName,
T object,
String from,
String to,
Boolean createCollection,
Boolean waitForSync) |
<T> EdgeEntity<T> |
InternalGraphDriverImpl.getEdge(String database,
String graphName,
String edgeCollectionName,
String key,
Class<T> clazz,
Long ifMatchRevision,
Long ifNoneMatchRevision) |
<T> EdgeEntity<T> |
InternalGraphDriverImpl.replaceEdge(String database,
String graphName,
String edgeCollectionName,
String key,
T value,
Boolean waitForSync,
Long ifMatchRevision,
Long ifNoneMatchRevision) |
<T> EdgeEntity<T> |
InternalGraphDriverImpl.updateEdge(String database,
String graphName,
String edgeCollectionName,
String key,
T value,
Boolean waitForSync,
Boolean keepNull,
Long ifMatchRevision,
Long ifNoneMatchRevision) |
Modifier and Type | Method and Description |
---|---|
<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) |
Copyright © 2012–2016 ArangoDB GmbH. All rights reserved.