Record Class SearchResult
java.lang.Object
java.lang.Record
io.micronaut.mcp.server.tools.search.SearchResult
- Record Components:
id
- a unique ID for the document or search result itemtitle
- human-readable titleurl
- canonical URL for citation
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionSearchResult
(@NonNull String id, @NonNull String title, @NonNull String url) Creates an instance of aSearchResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic @NonNull SearchResult.Builder
builder()
Create a new 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.@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
Create a new builder.- Returns:
- 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
-
url
Returns the value of theurl
record component.- Returns:
- the value of the
url
record component
-