Record Class FetchResponse
java.lang.Object
java.lang.Record
io.micronaut.mcp.server.tools.fetch.FetchResponse
- Record Components:
id- a unique ID for the document or search result itemtitle- a string title for the search result itemtext- The full text of the document or itemurl- a URL to the document or search result item. Useful for citing specific resources in research.metadata- an optional key/value pairing of data about the result
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classFetch Response Builder. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic @NonNull FetchResponse.Builderbuilder()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NonNull Stringid()Returns the value of theidrecord component.metadata()Returns the value of themetadatarecord component.@NonNull Stringtext()Returns the value of thetextrecord component.@NonNull Stringtitle()Returns the value of thetitlerecord component.final StringtoString()Returns a string representation of this record class.@NonNull Stringurl()Returns the value of theurlrecord component.
-
Constructor Details
-
Method Details
-
builder
-
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). -
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
title
Returns the value of thetitlerecord component.- Returns:
- the value of the
titlerecord component
-
text
Returns the value of thetextrecord component.- Returns:
- the value of the
textrecord component
-
url
Returns the value of theurlrecord component.- Returns:
- the value of the
urlrecord component
-
metadata
Returns the value of themetadatarecord component.- Returns:
- the value of the
metadatarecord component
-