Enum Class VectorIndexType
- All Implemented Interfaces:
Serializable, Comparable<VectorIndexType>, Constable
Vector index algorithm type used by supported databases.
Implementations may map these values to vendor-specific algorithms.
- Since:
- 5.0.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumDistance (similarity) metric to use for vector searches.Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic VectorIndexTypeReturns the enum constant of this class with the specified name.static VectorIndexType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IVF
Inverted file index. Best for faster approximate search with list/probe-style tuning. -
HNSW
Hierarchical Navigable Small World graph index. Best for high-recall approximate nearest-neighbor search.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-