public enum IndexType extends java.lang.Enum<IndexType>
Enum Constant and Description |
---|
AUTOINDEX |
BIN_FLAT |
BIN_IVF_FLAT |
DISKANN |
FLAT |
GPU_IVF_FLAT |
GPU_IVF_PQ |
HNSW |
IVF_FLAT |
IVF_PQ |
IVF_SQ8 |
None |
SCANN |
STL_SORT |
TRIE |
Modifier and Type | Method and Description |
---|---|
static IndexType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexType None
public static final IndexType FLAT
public static final IndexType IVF_FLAT
public static final IndexType IVF_SQ8
public static final IndexType IVF_PQ
public static final IndexType HNSW
public static final IndexType DISKANN
public static final IndexType AUTOINDEX
public static final IndexType SCANN
public static final IndexType GPU_IVF_FLAT
public static final IndexType GPU_IVF_PQ
public static final IndexType BIN_FLAT
public static final IndexType BIN_IVF_FLAT
public static final IndexType TRIE
public static final IndexType STL_SORT
public static IndexType[] values()
for (IndexType c : IndexType.values()) System.out.println(c);
public static IndexType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null