Package ai.confiqure
Enum Confiqure.Type
- All Implemented Interfaces:
Serializable,Comparable<Confiqure.Type>,java.lang.constant.Constable
- Enclosing class:
Confiqure
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic Confiqure.TypeReturns the enum constant of this type with the specified name.static Confiqure.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SINGLE
One configuration record per end user. -
MULTI
A table of configuration records per end user. -
FACTS
Not a configuration — the user-facts contract. The class declares what your application already knows about an end user (their categories, their counts, their open issues); its FIELD COMMENTS tell the model what each fact means. confiqureGETsConfiqure.callback()for the acting user, binds the JSON into this class, and puts the compact core in front of the model so the chat stops asking for things you already know.Read-only and host-owned: the conversation never writes a FACTS class, it is not a chat endpoint, and it holds no saved instances. Fetches are cached for 24 hours and refreshed in the background — a slow or down endpoint never delays a chat, it just serves the last known facts.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-