Package org.elasticsearch.action.get
Class GetResponse
java.lang.Object
org.elasticsearch.transport.TransportMessage
org.elasticsearch.transport.TransportResponse
org.elasticsearch.action.ActionResponse
org.elasticsearch.action.get.GetResponse
- All Implemented Interfaces:
java.lang.Iterable<DocumentField>,Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject
public class GetResponse extends ActionResponse implements java.lang.Iterable<DocumentField>, org.elasticsearch.common.xcontent.ToXContentObject
The response of a get action.
- See Also:
GetRequest,Client.get(GetRequest)
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.action.ActionResponse
ActionResponse.EmptyNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
-
Constructor Summary
Constructors Constructor Description GetResponse(GetResult getResult) -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)static GetResponsefromXContent(org.elasticsearch.common.xcontent.XContentParser parser)This method can be used to parse aGetResponseobject when it has been printed out as a xcontent using thetoXContent(XContentBuilder, Params)method.DocumentFieldgetField(java.lang.String name)java.util.Map<java.lang.String,DocumentField>getFields()java.lang.StringgetId()The id of the document.java.lang.StringgetIndex()The index the document was fetched from.longgetPrimaryTerm()The primary term of the last primary that has changed this document, if found.longgetSeqNo()The sequence number assigned to the last operation that has changed this document, if found.java.util.Map<java.lang.String,java.lang.Object>getSource()byte[]getSourceAsBytes()The source of the document if exists.BytesReferencegetSourceAsBytesRef()Returns bytes reference, also un compress the source if needed.java.util.Map<java.lang.String,java.lang.Object>getSourceAsMap()The source of the document (As a map).java.lang.StringgetSourceAsString()The source of the document (as a string).BytesReferencegetSourceInternal()Returns the internal source bytes, as they are returned without munging (for example, might still be compressed).java.lang.StringgetType()The type of the document.longgetVersion()The version of the doc.inthashCode()booleanisExists()Does the document exists.booleanisSourceEmpty()Is the source empty (not available) or not.java.util.Iterator<DocumentField>iterator()Deprecated.UsegetSource()insteadjava.lang.StringtoString()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
Constructor Details
-
Method Details
-
isExists
public boolean isExists()Does the document exists. -
getIndex
public java.lang.String getIndex()The index the document was fetched from. -
getType
public java.lang.String getType()The type of the document. -
getId
public java.lang.String getId()The id of the document. -
getVersion
public long getVersion()The version of the doc. -
getSeqNo
public long getSeqNo()The sequence number assigned to the last operation that has changed this document, if found. -
getPrimaryTerm
public long getPrimaryTerm()The primary term of the last primary that has changed this document, if found. -
getSourceAsBytes
public byte[] getSourceAsBytes()The source of the document if exists. -
getSourceInternal
Returns the internal source bytes, as they are returned without munging (for example, might still be compressed). -
getSourceAsBytesRef
Returns bytes reference, also un compress the source if needed. -
isSourceEmpty
public boolean isSourceEmpty()Is the source empty (not available) or not. -
getSourceAsString
public java.lang.String getSourceAsString()The source of the document (as a string). -
getSourceAsMap
public java.util.Map<java.lang.String,java.lang.Object> getSourceAsMap() throws ElasticsearchParseExceptionThe source of the document (As a map).- Throws:
ElasticsearchParseException
-
getSource
public java.util.Map<java.lang.String,java.lang.Object> getSource() -
getFields
-
getField
-
iterator
Deprecated.UsegetSource()instead- Specified by:
iteratorin interfacejava.lang.Iterable<DocumentField>
-
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-
fromXContent
public static GetResponse fromXContent(org.elasticsearch.common.xcontent.XContentParser parser) throws java.io.IOExceptionThis method can be used to parse aGetResponseobject when it has been printed out as a xcontent using thetoXContent(XContentBuilder, Params)method.For forward compatibility reason this method might not fail if it tries to parse a field it doesn't know. But before returning the result it will check that enough information were parsed to return a valid
GetResponseinstance and throws aParsingExceptionotherwise. This is the case when we get a 404 back, which can be parsed as a normalGetResponsewith found set to false, or as an elasticsearch exception. The caller of this method needs a way to figure out whether we got back a valid get response, which can be done by catching ParsingException.- Parameters:
parser-XContentParserto parse the response from- Returns:
- a
GetResponse - Throws:
java.io.IOException- is an I/O exception occurs during the parsing
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput. -
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-