Package org.elasticsearch.index.rankeval
Class RankEvalResponse
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportResponse
-
- org.elasticsearch.action.ActionResponse
-
- org.elasticsearch.index.rankeval.RankEvalResponse
-
- All Implemented Interfaces:
Streamable,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.elasticsearch.transport.TransportResponse
TransportResponse.Empty
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.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.elasticsearch.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
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()voidreadFrom(StreamInput in)java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)-
Methods inherited from class org.elasticsearch.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.elasticsearch.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
- Specified by:
writeToin interfaceStreamable- Specified by:
writeToin interfaceWriteable- Overrides:
writeToin classActionResponse- Throws:
java.io.IOException
-
readFrom
public void readFrom(StreamInput in) throws java.io.IOException
- Specified by:
readFromin interfaceStreamable- Overrides:
readFromin classActionResponse- 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
-
-