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