Enum Class Message.Role

java.lang.Object
java.lang.Enum<Message.Role>
dev.dokimos.core.conversation.Message.Role
All Implemented Interfaces:
Serializable, Comparable<Message.Role>, Constable
Enclosing class:
Message

public static enum Message.Role extends Enum<Message.Role>
The role of a message sender in a conversation.
  • Enum Constant Details

    • USER

      public static final Message.Role USER
      A message from the user.
    • ASSISTANT

      public static final Message.Role ASSISTANT
      A message from the assistant.
    • SYSTEM

      public static final Message.Role SYSTEM
      A system message providing context or instructions.
  • Method Details

    • values

      public static Message.Role[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Message.Role valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null