public enum IndexType extends Enum<IndexType>
| 枚举常量和说明 |
|---|
ANNOY |
AUTOINDEX |
BIN_FLAT |
BIN_IVF_FLAT |
DISKANN |
FLAT |
HNSW |
INVALID |
IVF_FLAT |
IVF_PQ |
IVF_SQ8 |
RHNSW_FLAT |
RHNSW_PQ |
RHNSW_SQ |
TRIE |
public static final IndexType INVALID
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 ANNOY
public static final IndexType RHNSW_FLAT
public static final IndexType RHNSW_PQ
public static final IndexType RHNSW_SQ
public static final IndexType DISKANN
public static final IndexType AUTOINDEX
public static final IndexType BIN_FLAT
public static final IndexType BIN_IVF_FLAT
public static final IndexType TRIE
public static IndexType[] values()
for (IndexType c : IndexType.values()) System.out.println(c);
public static IndexType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2023. All rights reserved.