public static enum IndexParam.IndexType extends java.lang.Enum<IndexParam.IndexType>
Enum Constant and Description |
---|
AUTOINDEX |
BIN_FLAT |
BIN_IVF_FLAT |
DISKANN |
FLAT |
GPU_BRUTE_FORCE |
GPU_CAGRA |
GPU_IVF_FLAT |
GPU_IVF_PQ |
HNSW |
INVERTED |
IVF_FLAT |
IVF_PQ |
IVF_SQ8 |
None |
SCANN |
SPARSE_INVERTED_INDEX |
SPARSE_WAND |
STL_SORT |
TRIE |
Modifier and Type | Method and Description |
---|---|
static IndexParam.IndexType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndexParam.IndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexParam.IndexType None
public static final IndexParam.IndexType FLAT
public static final IndexParam.IndexType IVF_FLAT
public static final IndexParam.IndexType IVF_SQ8
public static final IndexParam.IndexType IVF_PQ
public static final IndexParam.IndexType HNSW
public static final IndexParam.IndexType DISKANN
public static final IndexParam.IndexType AUTOINDEX
public static final IndexParam.IndexType SCANN
public static final IndexParam.IndexType GPU_IVF_FLAT
public static final IndexParam.IndexType GPU_IVF_PQ
public static final IndexParam.IndexType GPU_BRUTE_FORCE
public static final IndexParam.IndexType GPU_CAGRA
public static final IndexParam.IndexType BIN_FLAT
public static final IndexParam.IndexType BIN_IVF_FLAT
public static final IndexParam.IndexType TRIE
public static final IndexParam.IndexType STL_SORT
public static final IndexParam.IndexType INVERTED
public static final IndexParam.IndexType SPARSE_INVERTED_INDEX
public static final IndexParam.IndexType SPARSE_WAND
public static IndexParam.IndexType[] values()
for (IndexParam.IndexType c : IndexParam.IndexType.values()) System.out.println(c);
public static IndexParam.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