public enum ChatToolType extends Enum<ChatToolType>
| Enum Constant and Description |
|---|
FUNCTION |
MCP |
RETRIEVAL |
WEB_SEARCH |
| Modifier and Type | Method and Description |
|---|---|
String |
value() |
static ChatToolType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChatToolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatToolType WEB_SEARCH
public static final ChatToolType RETRIEVAL
public static final ChatToolType FUNCTION
public static final ChatToolType MCP
public static ChatToolType[] values()
for (ChatToolType c : ChatToolType.values()) System.out.println(c);
public static ChatToolType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
Copyright © 2025. All rights reserved.