IndexKind Enum
- java.
lang. Object - java.
lang. Enum - com.
microsoft. semantickernel. data. vectorstorage. definition. IndexKind
- com.
- java.
public enum IndexKind
extends java.lang.Enum<IndexKind>
Represents the kind of index to use for a vector store.
Fields
| FLAT |
Flat index, which performs an exact nearest neighbour search. |
| HNSW |
Hierarchical Navigable Small World, which performs an approximate nearest neighbour (ANN) search. |
| IVFFLAT |
Inverted file index, which performs an approximate nearest neighbour (ANN) search. |
| UNDEFINED |
No index specified. |
Methods inherited from java.lang.Enum
Methods inherited from java.lang.Object
Methods
getValue()
public String getValue()
Gets the string value of the index kind.