Package com.arangodb.entity.arangosearch
Class SearchAliasIndex
- java.lang.Object
-
- com.arangodb.entity.arangosearch.SearchAliasIndex
-
public final class SearchAliasIndex extends Object
- Since:
- ArabgoDB 3.10
- Author:
- Michele Rastelli
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SearchAliasIndex.OperationType
-
Constructor Summary
Constructors Constructor Description SearchAliasIndex(String collection, String index)
SearchAliasIndex(String collection, String index, SearchAliasIndex.OperationType operation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCollection()
String
getIndex()
SearchAliasIndex.OperationType
getOperation()
-
-
-
Constructor Detail
-
SearchAliasIndex
public SearchAliasIndex(String collection, String index)
- Parameters:
collection
- The name of a collection.index
- The name of an inverted index of the collection.
-
SearchAliasIndex
public SearchAliasIndex(String collection, String index, SearchAliasIndex.OperationType operation)
- Parameters:
collection
- The name of a collection.index
- The name of an inverted index of the collection.operation
- Whether to add or remove the index to the stored indexes property of the View. (default "add")
-
-
Method Detail
-
getCollection
public String getCollection()
-
getIndex
public String getIndex()
-
getOperation
public SearchAliasIndex.OperationType getOperation()
-
-