Package com.attivio.sdk.search
Class QueryFrameResult
- java.lang.Object
-
- com.attivio.sdk.search.QueryFrameResult
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
public class QueryFrameResult extends java.lang.Object implements java.lang.Cloneable, java.io.Serializable
Represents a result for aSearchProfile
.This result can then be used to apply transformations to a
QueryRequest
.EXPERIMENTAL: This API will be changed/renamed in a future release.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description QueryFrameResult()
QueryFrameResult(QueryFrame queryFrame)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addFeature(RelevancyFeature value)
Add aRelevancyFeature
to the result.QueryFrameResult
clone()
boolean
equals(java.lang.Object other)
java.util.List<RelevancyFeature>
getFeatures()
Get the extracted relevancy features.QueryFrame
getQueryFrame()
Get theQueryFrame
definition to apply to the request.int
hashCode()
void
setFeatures(java.util.List<RelevancyFeature> value)
Set the extracted relevancy features.void
setQueryFrame(QueryFrame value)
Set theQueryFrame
definition to apply to the request.java.lang.String
toString()
-
-
-
Constructor Detail
-
QueryFrameResult
public QueryFrameResult()
-
QueryFrameResult
public QueryFrameResult(QueryFrame queryFrame)
-
-
Method Detail
-
getQueryFrame
public QueryFrame getQueryFrame()
Get theQueryFrame
definition to apply to the request.
-
setQueryFrame
public void setQueryFrame(QueryFrame value)
Set theQueryFrame
definition to apply to the request.
-
getFeatures
public java.util.List<RelevancyFeature> getFeatures()
Get the extracted relevancy features.
-
setFeatures
public void setFeatures(java.util.List<RelevancyFeature> value)
Set the extracted relevancy features.
-
addFeature
public void addFeature(RelevancyFeature value)
Add aRelevancyFeature
to the result.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
clone
public QueryFrameResult clone()
- Overrides:
clone
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-