Class DocumentField
- java.lang.Object
-
- org.elasticsearch.common.document.DocumentField
-
- All Implemented Interfaces:
java.lang.Iterable<java.lang.Object>,Streamable,ToXContent,ToXContentFragment
public class DocumentField extends java.lang.Object implements Streamable, ToXContentFragment, java.lang.Iterable<java.lang.Object>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description DocumentField(java.lang.String name, java.util.List<java.lang.Object> values)
-
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)static DocumentFieldfromXContent(XContentParser parser)java.lang.StringgetName()The name of the field.<V> VgetValue()The first value of the hit.java.util.List<java.lang.Object>getValues()The field values.inthashCode()booleanisMetadataField()java.util.Iterator<java.lang.Object>iterator()static DocumentFieldreadDocumentField(StreamInput in)voidreadFrom(StreamInput in)Set this object's fields from a StreamInput.java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this object's fields to a StreamOutput.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
The name of the field.
-
getValue
public <V> V getValue()
The first value of the hit.
-
getValues
public java.util.List<java.lang.Object> getValues()
The field values.
-
isMetadataField
public boolean isMetadataField()
- Returns:
- The field is a metadata field
-
iterator
public java.util.Iterator<java.lang.Object> iterator()
- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Object>
-
readDocumentField
public static DocumentField readDocumentField(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
readFrom
public void readFrom(StreamInput in) throws java.io.IOException
Description copied from interface:StreamableSet this object's fields from a StreamInput.- Specified by:
readFromin interfaceStreamable- Throws:
java.io.IOException
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:StreamableWrite this object's fields to a StreamOutput.- Specified by:
writeToin interfaceStreamable- 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 DocumentField fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
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
-
-