VectorQueryKind Class
- java.
lang. Object - com.
azure. core. util. ExpandableStringEnum<T> - com.
azure. search. documents. models. VectorQueryKind
- com.
- com.
public final class VectorQueryKind
extends ExpandableStringEnum<VectorQueryKind>
The kind of vector query being performed.
Field Summary
Modifier and Type | Field and Description |
---|---|
static final
Vector |
TEXT
Vector query where a text value that needs to be vectorized is provided. |
static final
Vector |
VECTOR
Vector query where a raw vector value is provided. |
Constructor Summary
Constructor | Description |
---|---|
VectorQueryKind() |
Deprecated
Use the fromString(String name) factory method.
Creates a new instance of Vector |
Method Summary
Modifier and Type | Method and Description |
---|---|
static
Vector |
fromString(String name)
Creates or finds a Vector |
static
Collection<Vector |
values()
Gets known Vector |
Methods inherited from ExpandableStringEnum
Methods inherited from java.lang.Object
Field Details
TEXT
public static final VectorQueryKind TEXT
Vector query where a text value that needs to be vectorized is provided.
VECTOR
public static final VectorQueryKind VECTOR
Vector query where a raw vector value is provided.
Constructor Details
VectorQueryKind
@Deprecated
public VectorQueryKind()
Deprecated
Creates a new instance of VectorQueryKind value.
Method Details
fromString
public static VectorQueryKind fromString(String name)
Creates or finds a VectorQueryKind from its string representation.
Parameters:
Returns:
values
public static Collection
Gets known VectorQueryKind values.
Returns:
Applies to
Azure SDK for Java