Package com.arangodb.entity.arangosearch
Class StoredValue
- java.lang.Object
-
- com.arangodb.entity.arangosearch.StoredValue
-
public final class StoredValue extends Object
- Since:
- ArangoDB 3.7
- Author:
- Michele Rastelli
- See Also:
- API Documentation
-
-
Constructor Summary
Constructors Constructor Description StoredValue(List<String> fields)
StoredValue(List<String> fields, ArangoSearchCompression compression)
StoredValue(List<String> fields, ArangoSearchCompression compression, Boolean cache)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Boolean
getCache()
ArangoSearchCompression
getCompression()
List<String>
getFields()
int
hashCode()
-
-
-
Constructor Detail
-
StoredValue
public StoredValue(List<String> fields, ArangoSearchCompression compression, Boolean cache)
- Parameters:
fields
- A list of attribute paths. The . character denotes sub-attributes.compression
- Defines how to compress the attribute values.cache
- Whether to cache stored values in memory. (Since ArangoDB 3.9.5, Enterprise Edition only)
-
StoredValue
public StoredValue(List<String> fields, ArangoSearchCompression compression)
-
-