Package com.chrt.api.types
Enum LlmModelEnum.Value
- java.lang.Object
-
- java.lang.Enum<LlmModelEnum.Value>
-
- com.chrt.api.types.LlmModelEnum.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LlmModelEnum.Value>
- Enclosing class:
- LlmModelEnum
public static enum LlmModelEnum.Value extends java.lang.Enum<LlmModelEnum.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLAUDE_HAIKU_45CLAUDE_OPUS_47CLAUDE_SONNET_46GPT_54GPT_54_MINIGPT_55UNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LlmModelEnum.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LlmModelEnum.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GPT_55
public static final LlmModelEnum.Value GPT_55
-
GPT_54
public static final LlmModelEnum.Value GPT_54
-
GPT_54_MINI
public static final LlmModelEnum.Value GPT_54_MINI
-
CLAUDE_OPUS_47
public static final LlmModelEnum.Value CLAUDE_OPUS_47
-
CLAUDE_SONNET_46
public static final LlmModelEnum.Value CLAUDE_SONNET_46
-
CLAUDE_HAIKU_45
public static final LlmModelEnum.Value CLAUDE_HAIKU_45
-
UNKNOWN
public static final LlmModelEnum.Value UNKNOWN
-
-
Method Detail
-
values
public static LlmModelEnum.Value[] 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 (LlmModelEnum.Value c : LlmModelEnum.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LlmModelEnum.Value valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-