Package ai.confiqure

Enum Confiqure.Type

java.lang.Object
java.lang.Enum<Confiqure.Type>
ai.confiqure.Confiqure.Type
All Implemented Interfaces:
Serializable, Comparable<Confiqure.Type>, java.lang.constant.Constable
Enclosing class:
Confiqure

public static enum Confiqure.Type extends Enum<Confiqure.Type>
  • Enum Constant Details

    • SINGLE

      public static final Confiqure.Type SINGLE
      One configuration record per end user.
    • MULTI

      public static final Confiqure.Type MULTI
      A table of configuration records per end user.
    • FACTS

      public static final Confiqure.Type 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. confiqure GETs Confiqure.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

      public static Confiqure.Type[] 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

      public static Confiqure.Type 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 name
      NullPointerException - if the argument is null