Package org.opensearch.index.rankeval
Class RankEvalResponse
- java.lang.Object
-
- org.opensearch.transport.TransportMessage
-
- org.opensearch.transport.TransportResponse
-
- org.opensearch.action.ActionResponse
-
- org.opensearch.index.rankeval.RankEvalResponse
-
- All Implemented Interfaces:
Writeable,ToXContent,ToXContentObject
public class RankEvalResponse extends ActionResponse implements ToXContentObject
Returns the results for aRankEvalRequest.
The response contains a detailed section for each evaluation query in the request and possible failures that happened when execution individual queries.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opensearch.transport.TransportResponse
TransportResponse.Empty
-
Nested classes/interfaces inherited from interface org.opensearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.opensearch.common.io.stream.Writeable
Writeable.Reader<V extends java.lang.Object>, Writeable.Writer<V extends java.lang.Object>
-
-
Field Summary
-
Fields inherited from interface org.opensearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description RankEvalResponse(double metricScore, java.util.Map<java.lang.String,EvalQueryQuality> partialResults, java.util.Map<java.lang.String,java.lang.Exception> failures)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RankEvalResponsefromXContent(XContentParser parser)java.util.Map<java.lang.String,java.lang.Exception>getFailures()doublegetMetricScore()java.util.Map<java.lang.String,EvalQueryQuality>getPartialResults()java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)-
Methods inherited from class org.opensearch.transport.TransportMessage
remoteAddress, remoteAddress
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.opensearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Constructor Detail
-
RankEvalResponse
public RankEvalResponse(double metricScore, java.util.Map<java.lang.String,EvalQueryQuality> partialResults, java.util.Map<java.lang.String,java.lang.Exception> failures)
-
-
Method Detail
-
getMetricScore
public double getMetricScore()
-
getPartialResults
public java.util.Map<java.lang.String,EvalQueryQuality> getPartialResults()
-
getFailures
public java.util.Map<java.lang.String,java.lang.Exception> getFailures()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
fromXContent
public static RankEvalResponse fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
-