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.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
|