Enum EmbedTextDetails.Truncate
- java.lang.Object
-
- java.lang.Enum<EmbedTextDetails.Truncate>
-
- com.oracle.bmc.generativeaiinference.model.EmbedTextDetails.Truncate
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<EmbedTextDetails.Truncate>
- Enclosing class:
- EmbedTextDetails
public static enum EmbedTextDetails.Truncate extends Enum<EmbedTextDetails.Truncate> implements BmcEnum
For an input that’s longer than the maximum token length, specifies which part of the input text will be truncated.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EmbedTextDetails.Truncate
create(String key)
String
getValue()
static EmbedTextDetails.Truncate
valueOf(String name)
Returns the enum constant of this type with the specified name.static EmbedTextDetails.Truncate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final EmbedTextDetails.Truncate None
-
Start
public static final EmbedTextDetails.Truncate Start
-
End
public static final EmbedTextDetails.Truncate End
-
-
Method Detail
-
values
public static EmbedTextDetails.Truncate[] 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.Truncate c : EmbedTextDetails.Truncate.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.Truncate 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.Truncate create(String key)
-
-