public enum IndexType extends Enum<IndexType>
| Enum Constant and Description |
|---|
BITMAP |
BTREE |
INVERTED |
IVF_FLAT |
IVF_HNSW_PQ |
IVF_HNSW_SQ |
IVF_PQ |
IVF_SQ |
LABEL_LIST |
SCALAR |
VECTOR |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static IndexType |
valueOf(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 SCALAR
public static final IndexType BTREE
public static final IndexType BITMAP
public static final IndexType LABEL_LIST
public static final IndexType INVERTED
public static final IndexType VECTOR
public static final IndexType IVF_FLAT
public static final IndexType IVF_SQ
public static final IndexType IVF_PQ
public static final IndexType IVF_HNSW_SQ
public static final IndexType IVF_HNSW_PQ
public static IndexType[] values()
for (IndexType c : IndexType.values()) System.out.println(c);
public static IndexType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getValue()
Copyright © 2025. All rights reserved.