Package org.elasticsearch.search
Class SearchHit
java.lang.Object
org.elasticsearch.search.SearchHit
- All Implemented Interfaces:
Iterable<DocumentField>
,Writeable
,ToXContent
,ToXContentObject
public final class SearchHit
extends Object
implements Writeable, ToXContentObject, Iterable<DocumentField>
A single search hit.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static final class
Encapsulates the nested identity of a hit.Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final ObjectParser.UnknownFieldConsumer<Map<String,
Object>> Fields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ConstructorDescriptionSearchHit
(int docId) SearchHit
(int docId, String id, Text type, Map<String, DocumentField> documentFields, Map<String, DocumentField> metaFields) SearchHit
(int nestedTopDocId, String id, Text type, SearchHit.NestedIdentity nestedIdentity, Map<String, DocumentField> documentFields, Map<String, DocumentField> metaFields) SearchHit
(StreamInput in) -
Method Summary
Modifier and TypeMethodDescriptionstatic SearchHit
createFromMap
(Map<String, Object> values) static void
declareInnerHitsParseFields
(ObjectParser<Map<String, Object>, Void> parser) int
docId()
boolean
void
explanation
(org.apache.lucene.search.Explanation explanation) The hit field matching the given field name.static SearchHit
fromXContent
(XContentParser parser) Returns the cluster alias this hit comes from or null if it comes from a local clusterorg.apache.lucene.search.Explanation
If enabled, the explanation of the search hit.A map of hit fields (from field name to hit fields) if additional fields were required to be loaded.A map of highlighted fields.getId()
The id of the document.getIndex()
The index of the hit.String[]
The set of query and filter names the query matched with.If this is a nested hit then nested reference information is returned otherwisenull
is returned.long
returns the primary term of the last modification to the document, orSequenceNumbers.UNASSIGNED_PRIMARY_TERM
if not requested.Object[]
An array of the (raw) sort values used.float
getScore()
The score.long
getSeqNo()
returns the sequence number of the last modification to the document, orSequenceNumbers.UNASSIGNED_SEQ_NO
if not requested.getShard()
The shard of the search hit.Object[]
An array of the (formatted) sort values used.The source of the document as a map (can benull
).The source of the document as string (can benull
).Returns bytes reference, also uncompress the source if needed.getType()
Deprecated.Types are in the process of being removed.long
The version of the hit.int
hashCode()
boolean
Is the source available or not.void
highlightFields
(Map<String, HighlightField> highlightFields) iterator()
void
matchedQueries
(String[] matchedQueries) void
score
(float score) void
setDocumentField
(String fieldName, DocumentField field) void
setInnerHits
(Map<String, SearchHits> innerHits) void
setPrimaryTerm
(long primaryTerm) void
setSeqNo
(long seqNo) void
shard
(SearchShardTarget target) void
sortValues
(Object[] sortValues, DocValueFormat[] sortValueFormats) void
sortValues
(SearchSortValues sortValues) sourceRef
(BytesReference source) Sets representation, might be compressed....toInnerXContent
(XContentBuilder builder, ToXContent.Params params) toString()
toXContent
(XContentBuilder builder, ToXContent.Params params) void
version
(long version) void
writeTo
(StreamOutput out) Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface org.elasticsearch.xcontent.ToXContentObject
isFragment
-
Field Details
-
unknownMetaFieldConsumer
-
-
Constructor Details
-
SearchHit
public SearchHit(int docId) -
SearchHit
public SearchHit(int docId, String id, Text type, Map<String, DocumentField> documentFields, Map<String, DocumentField> metaFields) -
SearchHit
public SearchHit(int nestedTopDocId, String id, Text type, SearchHit.NestedIdentity nestedIdentity, Map<String, DocumentField> documentFields, Map<String, DocumentField> metaFields) -
SearchHit
- Throws:
IOException
-
-
Method Details
-
writeTo
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Throws:
IOException
-
docId
public int docId() -
score
public void score(float score) -
getScore
public float getScore()The score. -
version
public void version(long version) -
getVersion
public long getVersion()The version of the hit. -
setSeqNo
public void setSeqNo(long seqNo) -
setPrimaryTerm
public void setPrimaryTerm(long primaryTerm) -
getSeqNo
public long getSeqNo()returns the sequence number of the last modification to the document, orSequenceNumbers.UNASSIGNED_SEQ_NO
if not requested. -
getPrimaryTerm
public long getPrimaryTerm()returns the primary term of the last modification to the document, orSequenceNumbers.UNASSIGNED_PRIMARY_TERM
if not requested. -
getIndex
The index of the hit. -
getId
The id of the document. -
getType
Deprecated.Types are in the process of being removed. Instead of using a type, prefer to filter on a field on the document.The type of the document. -
getNestedIdentity
If this is a nested hit then nested reference information is returned otherwisenull
is returned. -
getSourceRef
Returns bytes reference, also uncompress the source if needed. -
sourceRef
Sets representation, might be compressed.... -
hasSource
public boolean hasSource()Is the source available or not. A source with no fields will return true. This will return false iffields
doesn't contain_source
or if source is disabled in the mapping. -
getSourceAsString
The source of the document as string (can benull
). -
getSourceAsMap
The source of the document as a map (can benull
). -
iterator
- Specified by:
iterator
in interfaceIterable<DocumentField>
-
field
The hit field matching the given field name. -
setDocumentField
-
getMetadataFields
- Returns:
- a map of metadata fields for this hit
-
getDocumentFields
- Returns:
- a map of non-metadata fields requested for this hit
-
getFields
A map of hit fields (from field name to hit fields) if additional fields were required to be loaded. Includes both document and metadata fields. -
getHighlightFields
A map of highlighted fields. -
highlightFields
-
sortValues
-
sortValues
-
getSortValues
An array of the (formatted) sort values used. -
getRawSortValues
An array of the (raw) sort values used. -
getExplanation
public org.apache.lucene.search.Explanation getExplanation()If enabled, the explanation of the search hit. -
explanation
public void explanation(org.apache.lucene.search.Explanation explanation) -
getShard
The shard of the search hit. -
shard
-
getClusterAlias
Returns the cluster alias this hit comes from or null if it comes from a local cluster -
matchedQueries
-
getMatchedQueries
The set of query and filter names the query matched with. Mainly makes sense for compound filters and queries. -
getInnerHits
- Returns:
- Inner hits or
null
if there are none
-
setInnerHits
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException - Specified by:
toXContent
in interfaceToXContent
- Throws:
IOException
-
toInnerXContent
public XContentBuilder toInnerXContent(XContentBuilder builder, ToXContent.Params params) throws IOException - Throws:
IOException
-
fromXContent
-
declareInnerHitsParseFields
-
createFromMap
-
equals
-
hashCode
public int hashCode() -
toString
-