Enum DocumentState.Known
-
- All Implemented Interfaces:
public enum DocumentState.KnownEnum representing the known values for DocumentState.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description STATE_UNSPECIFIEDThe default value. This value is used if the state is omitted.
STATE_PENDINGSome `Chunks` of the `Document` are being processed (embedding and vector storage).
STATE_ACTIVEAll `Chunks` of the `Document` is processed and available for querying.
STATE_FAILEDSome `Chunks` of the `Document` failed processing.
DOCUMENT_STATE_UNSPECIFIED
-
Method Summary
Modifier and Type Method Description static Array<DocumentState.Known>values()Returns an array containing the constants of this enum type, in the order they're declared. static DocumentState.KnownvalueOf(String name)Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static Array<DocumentState.Known> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static DocumentState.Known valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Returns:
the enum constant with the specified name
-
-
-
-