Class MoreLikeThisQueryBuilder.Item

java.lang.Object
org.elasticsearch.index.query.MoreLikeThisQueryBuilder.Item
All Implemented Interfaces:
Writeable, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentObject
Enclosing class:
MoreLikeThisQueryBuilder

public static final class MoreLikeThisQueryBuilder.Item
extends java.lang.Object
implements org.elasticsearch.common.xcontent.ToXContentObject, Writeable
A single item to be used for a MoreLikeThisQueryBuilder.
  • Field Details

  • Constructor Details

    • Item

      public Item()
    • Item

      public Item​(@Nullable java.lang.String index, java.lang.String id)
      Constructor for a given item / document request
      Parameters:
      index - the index where the document is located
      id - and its id
    • Item

      public Item​(@Nullable java.lang.String index, org.elasticsearch.common.xcontent.XContentBuilder doc)
      Constructor for an artificial document request, that is not present in the index.
      Parameters:
      index - the index to be used for parsing the doc
      doc - the document specification
    • Item

      @Deprecated public Item​(@Nullable java.lang.String index, @Nullable java.lang.String type, java.lang.String id)
      Deprecated.
      Types are in the process of being removed, use Item(java.lang.String,java.lang.String) instead.
      Constructor for a given item / document request
      Parameters:
      index - the index where the document is located
      type - the type of the document
      id - and its id
    • Item

      @Deprecated public Item​(@Nullable java.lang.String index, @Nullable java.lang.String type, org.elasticsearch.common.xcontent.XContentBuilder doc)
      Deprecated.
      Types are in the process of being removed, use Item(java.lang.String,org.elasticsearch.common.xcontent.XContentBuilder) instead.
      Constructor for an artificial document request, that is not present in the index.
      Parameters:
      index - the index to be used for parsing the doc
      type - the type to be used for parsing the doc
      doc - the document specification
  • Method Details

    • writeTo

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

      public java.lang.String index()
    • index

      public MoreLikeThisQueryBuilder.Item index​(java.lang.String index)
    • type

      @Deprecated public java.lang.String type()
      Deprecated.
      Types are in the process of being removed.
    • type

      @Deprecated public MoreLikeThisQueryBuilder.Item type​(java.lang.String type)
      Deprecated.
      Types are in the process of being removed.
    • id

      public java.lang.String id()
    • doc

      public BytesReference doc()
    • fields

      public java.lang.String[] fields()
    • fields

      public MoreLikeThisQueryBuilder.Item fields​(java.lang.String... fields)
    • perFieldAnalyzer

      public java.util.Map<java.lang.String,​java.lang.String> perFieldAnalyzer()
    • perFieldAnalyzer

      public MoreLikeThisQueryBuilder.Item perFieldAnalyzer​(java.util.Map<java.lang.String,​java.lang.String> perFieldAnalyzer)
      Sets the analyzer(s) to use at any given field.
    • routing

      public java.lang.String routing()
    • routing

      public MoreLikeThisQueryBuilder.Item routing​(java.lang.String routing)
    • version

      public long version()
    • version

      public MoreLikeThisQueryBuilder.Item version​(long version)
    • versionType

      public VersionType versionType()
    • versionType

      public MoreLikeThisQueryBuilder.Item versionType​(VersionType versionType)
    • parse

      public static MoreLikeThisQueryBuilder.Item parse​(org.elasticsearch.common.xcontent.XContentParser parser, MoreLikeThisQueryBuilder.Item item) throws java.io.IOException
      Parses and returns the given item.
      Throws:
      java.io.IOException
    • 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:
      toXContent in interface org.elasticsearch.common.xcontent.ToXContent
      Throws:
      java.io.IOException
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • equals

      public boolean equals​(java.lang.Object o)
      Overrides:
      equals in class java.lang.Object