Package com.google.genkit.ai.agent
Enum Class SnapshotStatus
- All Implemented Interfaces:
Serializable,Comparable<SnapshotStatus>,Constable
SnapshotStatus represents the status of an agent snapshot.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic SnapshotStatusCreates a SnapshotStatus from a string value.static SnapshotStatusfromValueOrCompleted(String value) Creates a SnapshotStatus from a string value, treating null or empty strings as COMPLETED.getValue()Returns the string value of the snapshot status.toString()static SnapshotStatusReturns the enum constant of this class with the specified name.static SnapshotStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
PENDING
The snapshot is pending. -
COMPLETED
The snapshot is completed. -
ABORTED
The snapshot was aborted. -
FAILED
The snapshot failed. -
EXPIRED
The snapshot expired.
-
-
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
-
getValue
Returns the string value of the snapshot status.- Returns:
- the snapshot status string value
-
fromValue
Creates a SnapshotStatus from a string value.- Parameters:
value- the string value- Returns:
- the corresponding SnapshotStatus
- Throws:
IllegalArgumentException- if the value doesn't match any SnapshotStatus
-
fromValueOrCompleted
Creates a SnapshotStatus from a string value, treating null or empty strings as COMPLETED.- Parameters:
value- the string value- Returns:
- the corresponding SnapshotStatus, or COMPLETED if value is null or empty
- Throws:
IllegalArgumentException- if the non-empty value doesn't match any SnapshotStatus
-
toString
- Overrides:
toStringin classEnum<SnapshotStatus>
-