Package com.google.genai.types
Enum TuningJobState.Known
- All Implemented Interfaces:
Serializable,Comparable<TuningJobState.Known>
- Enclosing class:
- TuningJobState
Enum representing the known values for TuningJobState.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTuning job is doing some post processing steps.Tuning job is validating the dataset.Tuning job is running.Default tuning job state.Tuning job is waiting for hardware capacity.Tuning job is waiting for job quota. -
Method Summary
Modifier and TypeMethodDescriptionstatic TuningJobState.KnownReturns the enum constant of this type with the specified name.static TuningJobState.Known[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TUNING_JOB_STATE_UNSPECIFIED
Default tuning job state. -
TUNING_JOB_STATE_WAITING_FOR_QUOTA
Tuning job is waiting for job quota. -
TUNING_JOB_STATE_PROCESSING_DATASET
Tuning job is validating the dataset. -
TUNING_JOB_STATE_WAITING_FOR_CAPACITY
Tuning job is waiting for hardware capacity. -
TUNING_JOB_STATE_TUNING
Tuning job is running. -
TUNING_JOB_STATE_POST_PROCESSING
Tuning job is doing some post processing steps.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-