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 class
Fetch Response Builder. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic @NonNull FetchResponse.Builder
builder()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@NonNull String
id()
Returns the value of theid
record component.metadata()
Returns the value of themetadata
record component.@NonNull String
text()
Returns the value of thetext
record component.@NonNull String
title()
Returns the value of thetitle
record component.final String
toString()
Returns a string representation of this record class.@NonNull String
url()
Returns the value of theurl
record 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 theid
record component.- Returns:
- the value of the
id
record component
-
title
Returns the value of thetitle
record component.- Returns:
- the value of the
title
record component
-
text
Returns the value of thetext
record component.- Returns:
- the value of the
text
record component
-
url
Returns the value of theurl
record component.- Returns:
- the value of the
url
record component
-
metadata
Returns the value of themetadata
record component.- Returns:
- the value of the
metadata
record component
-