Package | Description |
---|---|
com.arangodb | |
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()
Tells the server to load the collection into memory.
|
CollectionEntity |
ArangoCollection.rename(String newName)
Renames the collection
|
CollectionEntity |
ArangoCollection.truncate()
Removes all documents from the collection, but leaves the indexes intact
|
CollectionEntity |
ArangoCollection.unload()
Tells the server to remove the collection from memory.
|
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 | Class and Description |
---|---|
class |
CollectionPropertiesEntity |
class |
CollectionRevisionEntity |
Copyright © 2016–2019 ArangoDB GmbH. All rights reserved.