Enum EmbedTextDetails.InputType
- java.lang.Object
-
- java.lang.Enum<EmbedTextDetails.InputType>
-
- com.oracle.bmc.generativeaiinference.model.EmbedTextDetails.InputType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<EmbedTextDetails.InputType>
- Enclosing class:
- EmbedTextDetails
public static enum EmbedTextDetails.InputType extends Enum<EmbedTextDetails.InputType> implements BmcEnum
Specifies the input type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Classification
Clustering
Image
SearchDocument
SearchQuery
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EmbedTextDetails.InputType
create(String key)
String
getValue()
static EmbedTextDetails.InputType
valueOf(String name)
Returns the enum constant of this type with the specified name.static EmbedTextDetails.InputType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SearchDocument
public static final EmbedTextDetails.InputType SearchDocument
-
SearchQuery
public static final EmbedTextDetails.InputType SearchQuery
-
Classification
public static final EmbedTextDetails.InputType Classification
-
Clustering
public static final EmbedTextDetails.InputType Clustering
-
Image
public static final EmbedTextDetails.InputType Image
-
-
Method Detail
-
values
public static EmbedTextDetails.InputType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EmbedTextDetails.InputType c : EmbedTextDetails.InputType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EmbedTextDetails.InputType 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.)- 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
-
create
public static EmbedTextDetails.InputType create(String key)
-
-