Provides interfaces for Hazelcast vector database.
-
static interface
Provides a mapping from index name to vector, supplying vectors for a VectorCollection
with multiple indexes defined.
static interface
Represents values of a single vector.
VectorValues.of(float[] vector)
Returns a VectorValues
object suitable for supplying a single vector to a VectorCollection
configured with one vector index.
VectorValues.of(String indexName,
float[] vector)
Returns a VectorValues
object that represents a single named vector.
VectorValues.of(String indexName1,
float[] vector1,
String indexName2,
float[] vector2)
Returns a VectorValues
object that represents two mappings of index names to associated vectors.
Returns a VectorValues
object that represents the given mappings of index names to associated vectors.