Package com.google.genai.types
Enum VideoGenerationReferenceType.Known
java.lang.Object
java.lang.Enum<VideoGenerationReferenceType.Known>
com.google.genai.types.VideoGenerationReferenceType.Known
- All Implemented Interfaces:
Serializable
,Comparable<VideoGenerationReferenceType.Known>
- Enclosing class:
- VideoGenerationReferenceType
public static enum VideoGenerationReferenceType.Known
extends Enum<VideoGenerationReferenceType.Known>
Enum representing the known values for VideoGenerationReferenceType.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA reference image that provides assets to the generated video, such as the scene, an object, a character, etc.A reference image that provides aesthetics including colors, lighting, texture, etc., to be used as the style of the generated video, such as 'anime', 'photography', 'origami', etc. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static VideoGenerationReferenceType.Known[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ASSET
A reference image that provides assets to the generated video, such as the scene, an object, a character, etc. -
STYLE
A reference image that provides aesthetics including colors, lighting, texture, etc., to be used as the style of the generated video, such as 'anime', 'photography', 'origami', etc. -
VIDEO_GENERATION_REFERENCE_TYPE_UNSPECIFIED
-
-
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
-