Package | Description |
---|---|
com.arangodb | |
com.arangodb.entity | |
com.arangodb.impl |
Modifier and Type | Method and Description |
---|---|
CollectionEntity |
ArangoDriver.createCollection(String name)
Creates a new collection.
|
CollectionEntity |
ArangoDriver.createCollection(String name,
CollectionOptions collectionOptions)
Creates a new collection.
|
CollectionEntity |
InternalCollectionDriver.createCollection(String database,
String name,
CollectionOptions collectionOptions) |
CollectionEntity |
ArangoDriver.deleteCollection(long id)
Deletes a collection by id.
|
CollectionEntity |
ArangoDriver.deleteCollection(String name)
Deletes a collection by name.
|
CollectionEntity |
InternalCollectionDriver.deleteCollection(String database,
String name) |
CollectionEntity |
ArangoDriver.getCollection(long id)
Returns a collection from ArangoDB by id
|
CollectionEntity |
ArangoDriver.getCollection(String name)
Returns a collection from ArangoDB by name
|
CollectionEntity |
InternalCollectionDriver.getCollection(String database,
String name) |
CollectionEntity |
ArangoDriver.getCollectionChecksum(String name,
Boolean withRevisions,
Boolean withData)
Returns a collection from ArangoDB by name including the collection checksum
|
CollectionEntity |
InternalCollectionDriver.getCollectionChecksum(String database,
String name,
Boolean withRevisions,
Boolean withData) |
CollectionEntity |
ArangoDriver.getCollectionCount(long id)
Returns a collection from ArangoDB by id including the document count
|
CollectionEntity |
ArangoDriver.getCollectionCount(String name)
Returns a collection from ArangoDB by name including the document count
|
CollectionEntity |
InternalCollectionDriver.getCollectionCount(String database,
String name) |
CollectionEntity |
ArangoDriver.getCollectionFigures(long id)
Returns a collection from ArangoDB by id including the collection figures
|
CollectionEntity |
ArangoDriver.getCollectionFigures(String name)
Returns a collection from ArangoDB by name including the collection figures
|
CollectionEntity |
InternalCollectionDriver.getCollectionFigures(String database,
String name) |
CollectionEntity |
ArangoDriver.getCollectionProperties(long id)
Returns a collection from ArangoDB including all properties by id
|
CollectionEntity |
ArangoDriver.getCollectionProperties(String name)
Returns a collection from ArangoDB including all properties by name
|
CollectionEntity |
InternalCollectionDriver.getCollectionProperties(String database,
String name) |
CollectionEntity |
ArangoDriver.getCollectionRevision(long id)
Returns a collection from ArangoDB including revision by id
|
CollectionEntity |
ArangoDriver.getCollectionRevision(String name)
Returns a collection from ArangoDB including revision by name
|
CollectionEntity |
InternalCollectionDriver.getCollectionRevision(String database,
String name) |
CollectionEntity |
ArangoDriver.loadCollection(long id)
Returns the collection and loads it into memory.
|
CollectionEntity |
ArangoDriver.loadCollection(long id,
Boolean count)
Returns the collection and loads it into memory.
|
CollectionEntity |
ArangoDriver.loadCollection(String name)
Returns the collection and loads it into memory.
|
CollectionEntity |
ArangoDriver.loadCollection(String name,
Boolean count)
Returns the collection and loads it into memory.
|
CollectionEntity |
InternalCollectionDriver.loadCollection(String database,
String name,
Boolean count) |
CollectionEntity |
ArangoDriver.renameCollection(long id,
String newName)
Returns the collection and changes it's name.
|
CollectionEntity |
ArangoDriver.renameCollection(String name,
String newName)
Returns the collection and changes it's name.
|
CollectionEntity |
InternalCollectionDriver.renameCollection(String database,
String name,
String newName) |
CollectionEntity |
ArangoDriver.setCollectionProperties(long id,
Boolean newWaitForSync,
Long journalSize)
Returns the collection and changes it's journalSize and waitForSync.
|
CollectionEntity |
ArangoDriver.setCollectionProperties(String name,
Boolean newWaitForSync,
Long journalSize)
Returns the collection and changes it's journalSize and waitForSync.
|
CollectionEntity |
InternalCollectionDriver.setCollectionProperties(String database,
String name,
Boolean newWaitForSync,
Long journalSize) |
CollectionEntity |
ArangoDriver.truncateCollection(long id)
Returns the collection and deletes all documents.
|
CollectionEntity |
ArangoDriver.truncateCollection(String name)
Returns the collection and deletes all documents.
|
CollectionEntity |
InternalCollectionDriver.truncateCollection(String database,
String name) |
CollectionEntity |
ArangoDriver.unloadCollection(long id)
Returns the collection and deletes it from memory.
|
CollectionEntity |
ArangoDriver.unloadCollection(String name)
Returns the collection and deletes it from memory.
|
CollectionEntity |
InternalCollectionDriver.unloadCollection(String database,
String name) |
Modifier and Type | Method and Description |
---|---|
CollectionEntity |
EntityDeserializers.CollectionEntityDeserializer.deserialize(com.google.gson.JsonElement json,
Type typeOfT,
com.google.gson.JsonDeserializationContext context) |
Modifier and Type | Method and Description |
---|---|
List<CollectionEntity> |
ReplicationSyncEntity.getCollections() |
List<CollectionEntity> |
CollectionsEntity.getCollections() |
Map<String,CollectionEntity> |
CollectionsEntity.getNames() |
Modifier and Type | Method and Description |
---|---|
void |
ReplicationSyncEntity.setCollections(List<CollectionEntity> collections) |
void |
CollectionsEntity.setCollections(List<CollectionEntity> collections) |
Modifier and Type | Method and Description |
---|---|
CollectionEntity |
InternalCollectionDriverImpl.createCollection(String database,
String name,
CollectionOptions collectionOptions) |
CollectionEntity |
InternalCollectionDriverImpl.deleteCollection(String database,
String name) |
CollectionEntity |
InternalCollectionDriverImpl.getCollection(String database,
String name) |
CollectionEntity |
InternalCollectionDriverImpl.getCollectionChecksum(String database,
String name,
Boolean withRevisions,
Boolean withData) |
CollectionEntity |
InternalCollectionDriverImpl.getCollectionCount(String database,
String name) |
CollectionEntity |
InternalCollectionDriverImpl.getCollectionFigures(String database,
String name) |
CollectionEntity |
InternalCollectionDriverImpl.getCollectionProperties(String database,
String name) |
CollectionEntity |
InternalCollectionDriverImpl.getCollectionRevision(String database,
String name) |
CollectionEntity |
InternalCollectionDriverImpl.loadCollection(String database,
String name,
Boolean count) |
CollectionEntity |
InternalCollectionDriverImpl.renameCollection(String database,
String name,
String newName) |
CollectionEntity |
InternalCollectionDriverImpl.setCollectionProperties(String database,
String name,
Boolean newWaitForSync,
Long journalSize) |
CollectionEntity |
InternalCollectionDriverImpl.truncateCollection(String database,
String name) |
CollectionEntity |
InternalCollectionDriverImpl.unloadCollection(String database,
String name) |
Copyright © 2012–2016 ArangoDB GmbH. All rights reserved.