Enum Class Message.Role

java.lang.Object
java.lang.Enum<Message.Role>
org.a2aproject.sdk.spec.Message.Role
All Implemented Interfaces:
Serializable, Comparable<Message.Role>, Constable
Enclosing class:
Message

public static enum Message.Role extends Enum<Message.Role>
Defines the role of the message sender in the conversation.

The role determines who originated the message and how it should be processed within the conversational context.

  • Enum Constant Details

    • ROLE_USER

      public static final Message.Role ROLE_USER
      Message originated from the user (client side).
    • ROLE_AGENT

      public static final Message.Role ROLE_AGENT
      Message originated from the agent (server side).
    • ROLE_UNSPECIFIED

      public static final Message.Role ROLE_UNSPECIFIED
      Unspecified role.
  • 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