Enum Class VectorStoreProvider
java.lang.Object
java.lang.Enum<VectorStoreProvider>
org.springframework.ai.observation.conventions.VectorStoreProvider
- All Implemented Interfaces:
Serializable
,Comparable<VectorStoreProvider>
,Constable
Collection of systems providing vector store functionality. Based on the OpenTelemetry
Semantic Conventions for Vector Databases.
- Since:
- 1.0.0
- Author:
- Christian Tzolov, Thomas Vitale
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionVector store provided by Azure.Vector store provided by Cassandra.Vector store provided by Chroma.Vector store provided by CosmosDB.Vector store provided by Elasticsearch.Vector store provided by GemFire.Vector store provided by HANA.Vector store provided by Milvus.Vector store provided by MongoDB.Vector store provided by Neo4j.Vector store provided by OpenSearch.Vector store provided by Oracle.Vector store provided by PGVector.Vector store provided by Pinecone.Vector store provided by Qdrand.Vector store provided by Redis.Vector store provided by simple.Vector store provided by Typesense.Vector store provided by Weaviate. -
Method Summary
Modifier and TypeMethodDescriptionvalue()
Return the value of the vector store provider.static VectorStoreProvider
Returns the enum constant of this class with the specified name.static VectorStoreProvider[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AZURE
Vector store provided by Azure. -
CASSANDRA
Vector store provided by Cassandra. -
CHROMA
Vector store provided by Chroma. -
COSMOSDB
Vector store provided by CosmosDB. -
ELASTICSEARCH
Vector store provided by Elasticsearch. -
GEMFIRE
Vector store provided by GemFire. -
HANA
Vector store provided by HANA. -
MILVUS
Vector store provided by Milvus. -
MONGODB
Vector store provided by MongoDB. -
NEO4J
Vector store provided by Neo4j. -
OPENSEARCH
Vector store provided by OpenSearch. -
ORACLE
Vector store provided by Oracle. -
PG_VECTOR
Vector store provided by PGVector. -
PINECONE
Vector store provided by Pinecone. -
QDRANT
Vector store provided by Qdrand. -
REDIS
Vector store provided by Redis. -
SIMPLE
Vector store provided by simple. -
TYPESENSE
Vector store provided by Typesense. -
WEAVIATE
Vector store provided by Weaviate.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
value
Return the value of the vector store provider.- Returns:
- the value of the vector store provider
-