@Generated public enum VectorIndexType extends Enum<VectorIndexType>
- `DELTA_SYNC`: An index that automatically syncs with a source Delta Table, automatically and incrementally updating the index as the underlying data in the Delta Table changes. - `DIRECT_ACCESS`: An index that supports direct read and write of vectors and metadata through our REST and SDK APIs. With this model, the user manages index updates.
| Enum Constant and Description |
|---|
DELTA_SYNC |
DIRECT_ACCESS |
| Modifier and Type | Method and Description |
|---|---|
static VectorIndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VectorIndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorIndexType DELTA_SYNC
public static final VectorIndexType DIRECT_ACCESS
public static VectorIndexType[] values()
for (VectorIndexType c : VectorIndexType.values()) System.out.println(c);
public static VectorIndexType 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 nullCopyright © 2024. All rights reserved.