Class VectorStoreFileBatchStatus
java.lang.Object
com.azure.core.util.ExpandableStringEnum<VectorStoreFileBatchStatus>
com.azure.ai.openai.assistants.models.VectorStoreFileBatchStatus
- All Implemented Interfaces:
com.azure.core.util.ExpandableEnum<String>
public final class VectorStoreFileBatchStatus
extends com.azure.core.util.ExpandableStringEnum<VectorStoreFileBatchStatus>
The status of the vector store file batch.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final VectorStoreFileBatchStatus
The vector store file batch was cancelled.static final VectorStoreFileBatchStatus
the vector store file batch is ready for use.static final VectorStoreFileBatchStatus
The vector store file batch failed to process.static final VectorStoreFileBatchStatus
The vector store is still processing this file batch. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic VectorStoreFileBatchStatus
fromString
(String name) Creates or finds a VectorStoreFileBatchStatus from its string representation.static Collection
<VectorStoreFileBatchStatus> values()
Gets known VectorStoreFileBatchStatus values.Methods inherited from class com.azure.core.util.ExpandableStringEnum
equals, fromString, getValue, hashCode, toString, values
-
Field Details
-
IN_PROGRESS
The vector store is still processing this file batch. -
COMPLETED
the vector store file batch is ready for use. -
CANCELLED
The vector store file batch was cancelled. -
FAILED
The vector store file batch failed to process.
-
-
Constructor Details
-
VectorStoreFileBatchStatus
Deprecated.Use thefromString(String)
factory method.Creates a new instance of VectorStoreFileBatchStatus value.
-
-
Method Details
-
fromString
Creates or finds a VectorStoreFileBatchStatus from its string representation.- Parameters:
name
- a name to look for.- Returns:
- the corresponding VectorStoreFileBatchStatus.
-
values
Gets known VectorStoreFileBatchStatus values.- Returns:
- known VectorStoreFileBatchStatus values.
-
fromString(String)
factory method.