Package com.google.genai.types
Enum StartSensitivity.Known
-
- All Implemented Interfaces:
public enum StartSensitivity.KnownEnum representing the known values for StartSensitivity.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description START_SENSITIVITY_UNSPECIFIEDThe default is START_SENSITIVITY_LOW.
START_SENSITIVITY_HIGHAutomatic detection will detect the start of speech more often.
START_SENSITIVITY_LOWAutomatic detection will detect the start of speech less often.
-
Method Summary
Modifier and Type Method Description static Array<StartSensitivity.Known>values()Returns an array containing the constants of this enum type, in the order they're declared. static StartSensitivity.KnownvalueOf(String name)Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static Array<StartSensitivity.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 StartSensitivity.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
-
-
-
-