@Stability.Uncommitted public enum VectorQueryCombination extends Enum<VectorQueryCombination>
| Enum Constant and Description |
|---|
AND
All vector queries must match a document for it to be included.
|
OR
Any vector query may match a document for it to be included.
|
| Modifier and Type | Method and Description |
|---|---|
com.couchbase.client.core.api.search.vector.CoreVectorQueryCombination |
toCore() |
static VectorQueryCombination |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VectorQueryCombination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorQueryCombination AND
public static final VectorQueryCombination OR
public static VectorQueryCombination[] values()
for (VectorQueryCombination c : VectorQueryCombination.values()) System.out.println(c);
public static VectorQueryCombination 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 null@Stability.Internal public com.couchbase.client.core.api.search.vector.CoreVectorQueryCombination toCore()
Copyright © 2024 Couchbase, Inc.. All rights reserved.