public static enum QuestionRouter.Type extends Enum<QuestionRouter.Type>
| Enum Constant and Description |
|---|
vectorstore |
web_search |
| Modifier and Type | Method and Description |
|---|---|
static QuestionRouter.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuestionRouter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuestionRouter.Type vectorstore
public static final QuestionRouter.Type web_search
public static QuestionRouter.Type[] values()
for (QuestionRouter.Type c : QuestionRouter.Type.values()) System.out.println(c);
public static QuestionRouter.Type 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 nullCopyright © 2024. All rights reserved.