Package org.elasticsearch.client.core
Class MultiTermVectorsRequest
- java.lang.Object
-
- org.elasticsearch.client.core.MultiTermVectorsRequest
-
- All Implemented Interfaces:
Validatable,ToXContent,ToXContentObject
public class MultiTermVectorsRequest extends java.lang.Object implements ToXContentObject, Validatable
-
-
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
-
Fields inherited from interface org.elasticsearch.client.Validatable
EMPTY
-
-
Constructor Summary
Constructors Constructor Description MultiTermVectorsRequest()Constructs an empty MultiTermVectorsRequest After that useaddmethod to add individualTermVectorsRequestto it.MultiTermVectorsRequest(java.lang.String[] ids, TermVectorsRequest template)Constructs a MultiTermVectorsRequest from the given document ids and a templateTermVectorsRequest.
-
Method Summary
Modifier and Type Method Description voidadd(TermVectorsRequest request)Adds anotherTermVectorsRequestto thisMultiTermVectorsRequestXContentBuildertoXContent(XContentBuilder builder, 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 Detail
-
MultiTermVectorsRequest
public MultiTermVectorsRequest()
Constructs an empty MultiTermVectorsRequest After that useaddmethod to add individualTermVectorsRequestto it.
-
MultiTermVectorsRequest
public MultiTermVectorsRequest(java.lang.String[] ids, TermVectorsRequest template)Constructs a MultiTermVectorsRequest from the given document ids and a templateTermVectorsRequest. Used when individual requests share the same index, type and other settings.- Parameters:
ids- - ids of documents for which term vectors are requestedtemplate- - a templateTermVectorsRequestthat allows to set all settings only once for all requests.
-
-
Method Detail
-
add
public void add(TermVectorsRequest request)
Adds anotherTermVectorsRequestto thisMultiTermVectorsRequest- Parameters:
request- -TermVectorsRequestto add
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
-