Package org.a2aproject.sdk.spec
Enum Class Message.Role
- All Implemented Interfaces:
Serializable,Comparable<Message.Role>,Constable
- Enclosing class:
- Message
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionMessage originated from the agent (server side).Unspecified role.Message originated from the user (client side). -
Method Summary
Modifier and TypeMethodDescriptionstatic Message.RoleReturns the enum constant of this class with the specified name.static Message.Role[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ROLE_USER
Message originated from the user (client side). -
ROLE_AGENT
Message originated from the agent (server side). -
ROLE_UNSPECIFIED
Unspecified role.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-