Package | Description |
---|---|
com.arangodb | |
com.arangodb.async | |
com.arangodb.async.internal | |
com.arangodb.entity |
Modifier and Type | Method and Description |
---|---|
CollectionEntity |
ArangoCollection.create()
Creates a collection for this collection's name, then returns collection information from the server.
|
CollectionEntity |
ArangoCollection.create(CollectionCreateOptions options)
Creates a collection with the given
options for this collection's name, then returns collection
information from the server. |
CollectionEntity |
ArangoDatabase.createCollection(String name)
Creates a collection for the given collection's name, then returns collection information from the server.
|
CollectionEntity |
ArangoDatabase.createCollection(String name,
CollectionCreateOptions options)
Creates a collection with the given
options for this collection's name, then returns collection
information from the server. |
CollectionEntity |
ArangoCollection.getInfo()
Returns information about the collection
|
CollectionEntity |
ArangoCollection.load()
Deprecated.
MMFiles only
|
CollectionEntity |
ArangoCollection.rename(String newName)
Renames the collection
|
CollectionEntity |
ArangoCollection.truncate()
Removes all documents from the collection, but leaves the indexes intact
|
CollectionEntity |
ArangoCollection.truncate(CollectionTruncateOptions options)
Removes all documents from the collection, but leaves the indexes intact
|
CollectionEntity |
ArangoCollection.unload()
Deprecated.
MMFiles only
|
Modifier and Type | Method and Description |
---|---|
Collection<CollectionEntity> |
ArangoDatabase.getCollections()
Fetches all collections from the database and returns an list of collection descriptions.
|
Collection<CollectionEntity> |
ArangoDatabase.getCollections(CollectionsReadOptions options)
Fetches all collections from the database and returns an list of collection descriptions.
|
Modifier and Type | Method and Description |
---|---|
CompletableFuture<CollectionEntity> |
ArangoCollectionAsync.create()
Creates the collection
|
CompletableFuture<CollectionEntity> |
ArangoCollectionAsync.create(CollectionCreateOptions options)
Creates the collection
|
CompletableFuture<CollectionEntity> |
ArangoDatabaseAsync.createCollection(String name)
Creates a collection
|
CompletableFuture<CollectionEntity> |
ArangoDatabaseAsync.createCollection(String name,
CollectionCreateOptions options)
Creates a collection
|
CompletableFuture<Collection<CollectionEntity>> |
ArangoDatabaseAsync.getCollections()
Returns all collections
|
CompletableFuture<Collection<CollectionEntity>> |
ArangoDatabaseAsync.getCollections(CollectionsReadOptions options)
Returns all collections
|
CompletableFuture<CollectionEntity> |
ArangoCollectionAsync.getInfo()
Returns information about the collection
|
CompletableFuture<CollectionEntity> |
ArangoCollectionAsync.load()
Deprecated.
MMFiles only
|
CompletableFuture<CollectionEntity> |
ArangoCollectionAsync.rename(String newName)
Renames a collection
|
CompletableFuture<CollectionEntity> |
ArangoCollectionAsync.truncate()
Removes all documents from the collection, but leaves the indexes intact
|
CompletableFuture<CollectionEntity> |
ArangoCollectionAsync.truncate(CollectionTruncateOptions options)
Removes all documents from the collection, but leaves the indexes intact
|
CompletableFuture<CollectionEntity> |
ArangoCollectionAsync.unload()
Deprecated.
MMFiles only
|
Modifier and Type | Class and Description |
---|---|
class |
CollectionPropertiesEntity |
class |
CollectionRevisionEntity |
Copyright © 2016–2023 ArangoDB GmbH. All rights reserved.