Class DocumentField

java.lang.Object
org.elasticsearch.common.document.DocumentField
All Implemented Interfaces:
Iterable<Object>, Writeable, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentFragment

public class DocumentField extends Object implements Writeable, org.elasticsearch.common.xcontent.ToXContentFragment, Iterable<Object>
A single field name and values part of SearchHit and GetResult.
See Also:
SearchHit, GetResult
  • Constructor Details

  • Method Details

    • getName

      public String getName()
      The name of the field.
    • getValue

      public <V> V getValue()
      The first value of the hit.
    • getValues

      public List<Object> getValues()
      The field values.
    • iterator

      public Iterator<Object> iterator()
      Specified by:
      iterator in interface Iterable<Object>
    • writeTo

      public void writeTo(StreamOutput out) throws IOException
      Description copied from interface: Writeable
      Write this into the StreamOutput.
      Specified by:
      writeTo in interface Writeable
      Throws:
      IOException
    • toXContent

      public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOException
      Specified by:
      toXContent in interface org.elasticsearch.common.xcontent.ToXContent
      Throws:
      IOException
    • fromXContent

      public static DocumentField fromXContent(org.elasticsearch.common.xcontent.XContentParser parser) throws IOException
      Throws:
      IOException
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object