Package io.modelcontextprotocol.spec
Record Class McpSchema.EmbeddedResource
java.lang.Object
java.lang.Record
io.modelcontextprotocol.spec.McpSchema.EmbeddedResource
- All Implemented Interfaces:
McpSchema.Content
- Enclosing class:
- McpSchema
public static record McpSchema.EmbeddedResource(List<McpSchema.Role> audience, Double priority, McpSchema.ResourceContents resource)
extends Record
implements McpSchema.Content
-
Constructor Summary
ConstructorsConstructorDescriptionEmbeddedResource(List<McpSchema.Role> audience, Double priority, McpSchema.ResourceContents resource) Creates an instance of aEmbeddedResourcerecord 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.resource()Returns the value of theresourcerecord 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
-
EmbeddedResource
public EmbeddedResource(List<McpSchema.Role> audience, Double priority, McpSchema.ResourceContents resource) Creates an instance of aEmbeddedResourcerecord class.- Parameters:
audience- the value for theaudiencerecord componentpriority- the value for thepriorityrecord componentresource- the value for theresourcerecord 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
-
resource
Returns the value of theresourcerecord component.- Returns:
- the value of the
resourcerecord component
-