Package io.modelcontextprotocol.spec
Record Class McpSchema.TextContent
java.lang.Object
java.lang.Record
io.modelcontextprotocol.spec.McpSchema.TextContent
- All Implemented Interfaces:
McpSchema.Content
- Enclosing class:
- McpSchema
public static record McpSchema.TextContent(List<McpSchema.Role> audience, Double priority, String text)
extends Record
implements McpSchema.Content
-
Constructor Summary
ConstructorsConstructorDescriptionTextContent(String content) TextContent(List<McpSchema.Role> audience, Double priority, String text) Creates an instance of aTextContentrecord class. -
Method Summary
Modifier and TypeMethodDescriptionaudience()Returns the value of theaudiencerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.priority()Returns the value of thepriorityrecord component.text()Returns the value of thetextrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface io.modelcontextprotocol.spec.McpSchema.Content
type
-
Constructor Details
-
TextContent
-
TextContent
Creates an instance of aTextContentrecord class.- Parameters:
audience- the value for theaudiencerecord componentpriority- the value for thepriorityrecord componenttext- the value for thetextrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
audience
Returns the value of theaudiencerecord component.- Returns:
- the value of the
audiencerecord component
-
priority
Returns the value of thepriorityrecord component.- Returns:
- the value of the
priorityrecord component
-
text
Returns the value of thetextrecord component.- Returns:
- the value of the
textrecord component
-