Uses of Class
com.arangodb.entity.VertexUpdateEntity
-
Packages that use VertexUpdateEntity Package Description com.arangodb -
-
Uses of VertexUpdateEntity in com.arangodb
Methods in com.arangodb that return VertexUpdateEntity Modifier and Type Method Description VertexUpdateEntity
ArangoVertexCollection. replaceVertex(String key, Object value)
Replaces the vertex with key with the one in the body, provided there is such a vertex and no precondition is violatedVertexUpdateEntity
ArangoVertexCollection. replaceVertex(String key, Object value, VertexReplaceOptions options)
Replaces the vertex with key with the one in the body, provided there is such a vertex and no precondition is violatedVertexUpdateEntity
ArangoVertexCollection. updateVertex(String key, Object value)
Partially updates the vertex identified by document-key.VertexUpdateEntity
ArangoVertexCollection. updateVertex(String key, Object value, VertexUpdateOptions options)
Partially updates the vertex identified by document-key.Methods in com.arangodb that return types with arguments of type VertexUpdateEntity Modifier and Type Method Description CompletableFuture<VertexUpdateEntity>
ArangoVertexCollectionAsync. replaceVertex(String key, Object value)
Asynchronous version ofArangoVertexCollection.replaceVertex(String, Object)
CompletableFuture<VertexUpdateEntity>
ArangoVertexCollectionAsync. replaceVertex(String key, Object value, VertexReplaceOptions options)
Asynchronous version ofArangoVertexCollection.replaceVertex(String, Object, VertexReplaceOptions)
CompletableFuture<VertexUpdateEntity>
ArangoVertexCollectionAsync. updateVertex(String key, Object value)
Asynchronous version ofArangoVertexCollection.updateVertex(String, Object)
CompletableFuture<VertexUpdateEntity>
ArangoVertexCollectionAsync. updateVertex(String key, Object value, VertexUpdateOptions options)
Asynchronous version ofArangoVertexCollection.updateVertex(String, Object, VertexUpdateOptions)
-