public static enum IndexParam.IndexType extends java.lang.Enum<IndexParam.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 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 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 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