Class MultiTermVectorsRequest

java.lang.Object
org.elasticsearch.client.core.MultiTermVectorsRequest
All Implemented Interfaces:
Validatable, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentObject

public class MultiTermVectorsRequest
extends java.lang.Object
implements org.elasticsearch.common.xcontent.ToXContentObject, Validatable
  • Nested Class Summary

    Nested 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.Params
  • Field Summary

    Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent

    EMPTY_PARAMS

    Fields inherited from interface org.elasticsearch.client.Validatable

    EMPTY
  • Constructor Summary

    Constructors
    Constructor Description
    MultiTermVectorsRequest()
    Constructs an empty MultiTermVectorsRequest After that use add method to add individual TermVectorsRequest to it.
    MultiTermVectorsRequest​(java.lang.String[] ids, TermVectorsRequest template)
    Constructs a MultiTermVectorsRequest from the given document ids and a template TermVectorsRequest.
  • Method Summary

    Modifier and Type Method Description
    void add​(TermVectorsRequest request)
    Adds another TermVectorsRequest to this MultiTermVectorsRequest
    org.elasticsearch.common.xcontent.XContentBuilder toXContent​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject

    isFragment

    Methods inherited from interface org.elasticsearch.client.Validatable

    validate
  • Constructor Details

    • MultiTermVectorsRequest

      public MultiTermVectorsRequest()
      Constructs an empty MultiTermVectorsRequest After that use add method to add individual TermVectorsRequest to it.
    • MultiTermVectorsRequest

      public MultiTermVectorsRequest​(java.lang.String[] ids, TermVectorsRequest template)
      Constructs a MultiTermVectorsRequest from the given document ids and a template TermVectorsRequest. Used when individual requests share the same index, type and other settings.
      Parameters:
      ids - - ids of documents for which term vectors are requested
      template - - a template TermVectorsRequest that allows to set all settings only once for all requests.
  • Method Details

    • add

      public void add​(TermVectorsRequest request)
      Adds another TermVectorsRequest to this MultiTermVectorsRequest
      Parameters:
      request - - TermVectorsRequest to add
    • 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