Package | Description |
---|---|
com.arangodb | |
com.arangodb.entity |
Modifier and Type | Method and Description |
---|---|
IndexEntity |
ArangoCollection.createFulltextIndex(Collection<String> fields,
FulltextIndexOptions options)
Deprecated.
use
#ensureFulltextIndex(Collection, FulltextIndexOptions) instead |
IndexEntity |
ArangoCollection.createGeoIndex(Collection<String> fields,
GeoIndexOptions options)
Deprecated.
use
#ensureGeoIndex(Collection, GeoIndexOptions) instead |
IndexEntity |
ArangoCollection.createHashIndex(Collection<String> fields,
HashIndexOptions options)
Deprecated.
|
IndexEntity |
ArangoCollection.createPersistentIndex(Collection<String> fields,
PersistentIndexOptions options)
Deprecated.
use
#ensurePersistentIndex(Collection, PersistentIndexOptions) instead |
IndexEntity |
ArangoCollection.createSkiplistIndex(Collection<String> fields,
SkiplistIndexOptions options)
Deprecated.
use
#ensureSkiplistIndex(Collection, SkiplistIndexOptions) instead |
IndexEntity |
ArangoCollection.ensureFulltextIndex(Iterable<String> fields,
FulltextIndexOptions options)
Creates a fulltext index for the collection, if it does not already exist.
|
IndexEntity |
ArangoCollection.ensureGeoIndex(Iterable<String> fields,
GeoIndexOptions options)
Creates a geo-spatial index for the collection, if it does not already exist.
|
IndexEntity |
ArangoCollection.ensureHashIndex(Iterable<String> fields,
HashIndexOptions options)
Creates a hash index for the collection if it does not already exist.
|
IndexEntity |
ArangoCollection.ensurePersistentIndex(Iterable<String> fields,
PersistentIndexOptions options)
Creates a persistent index for the collection, if it does not already exist.
|
IndexEntity |
ArangoCollection.ensureSkiplistIndex(Iterable<String> fields,
SkiplistIndexOptions options)
Creates a skip-list index for the collection, if it does not already exist.
|
IndexEntity |
ArangoDatabase.getIndex(String id)
Returns an index
|
IndexEntity |
ArangoCollection.getIndex(String id)
Returns an index
|
Modifier and Type | Method and Description |
---|---|
Collection<IndexEntity> |
ArangoCollection.getIndexes()
Returns all indexes of the collection
|
Modifier and Type | Method and Description |
---|---|
IndexEntity |
AqlExecutionExplainEntity.ExecutionNode.getIndexes() |
Copyright © 2016–2018 ArangoDB GmbH. All rights reserved.