Uses of Class
org.elasticsearch.common.Required

Packages that use Required
org.elasticsearch.action.admin.indices.mapping.put Put Mapping Action. 
org.elasticsearch.action.admin.indices.validate.query Validate action. 
org.elasticsearch.action.count Count action. 
org.elasticsearch.action.delete Delete action. 
org.elasticsearch.action.deletebyquery Delete by query action. 
org.elasticsearch.action.get Get action. 
org.elasticsearch.action.index Index action. 
org.elasticsearch.action.mlt More Like This action. 
org.elasticsearch.action.percolate   
 

Uses of Required in org.elasticsearch.action.admin.indices.mapping.put
 

Methods in org.elasticsearch.action.admin.indices.mapping.put with annotations of type Required
 PutMappingRequestBuilder PutMappingRequestBuilder.setType(String type)
          The type of the mappings.
 PutMappingRequest PutMappingRequest.source(Map mappingSource)
          The mapping source definition.
 PutMappingRequest PutMappingRequest.source(String mappingSource)
          The mapping source definition.
 PutMappingRequest PutMappingRequest.source(XContentBuilder mappingBuilder)
          The mapping source definition.
 PutMappingRequest PutMappingRequest.type(String mappingType)
          The type of the mappings.
 

Uses of Required in org.elasticsearch.action.admin.indices.validate.query
 

Methods in org.elasticsearch.action.admin.indices.validate.query with annotations of type Required
 ValidateQueryRequest ValidateQueryRequest.query(byte[] querySource)
          The query source to validate.
 ValidateQueryRequest ValidateQueryRequest.query(byte[] querySource, int offset, int length, boolean unsafe)
          The query source to validate.
 ValidateQueryRequest ValidateQueryRequest.query(BytesReference querySource, boolean unsafe)
          The query source to validate.
 ValidateQueryRequest ValidateQueryRequest.query(Map querySource)
          The query source to execute in the form of a map.
 ValidateQueryRequest ValidateQueryRequest.query(QueryBuilder queryBuilder)
          The query source to execute.
 ValidateQueryRequest ValidateQueryRequest.query(String querySource)
          The query source to validate.
 ValidateQueryRequest ValidateQueryRequest.query(XContentBuilder builder)
           
 

Uses of Required in org.elasticsearch.action.count
 

Methods in org.elasticsearch.action.count with annotations of type Required
 CountRequest CountRequest.query(byte[] querySource)
          The query source to execute.
 CountRequest CountRequest.query(byte[] querySource, int offset, int length, boolean unsafe)
          The query source to execute.
 CountRequest CountRequest.query(BytesReference querySource, boolean unsafe)
           
 CountRequest CountRequest.query(Map querySource)
          The query source to execute in the form of a map.
 CountRequest CountRequest.query(QueryBuilder queryBuilder)
          The query source to execute.
 CountRequest CountRequest.query(String querySource)
          The query source to execute.
 CountRequest CountRequest.query(XContentBuilder builder)
           
 

Uses of Required in org.elasticsearch.action.delete
 

Methods in org.elasticsearch.action.delete with annotations of type Required
 DeleteRequest DeleteRequest.id(String id)
          Sets the id of the document to delete.
 DeleteRequest DeleteRequest.type(String type)
          Sets the type of the document to delete.
 

Uses of Required in org.elasticsearch.action.deletebyquery
 

Methods in org.elasticsearch.action.deletebyquery with annotations of type Required
 DeleteByQueryRequest DeleteByQueryRequest.query(byte[] querySource)
          The query source to execute.
 DeleteByQueryRequest DeleteByQueryRequest.query(byte[] querySource, int offset, int length, boolean unsafe)
          The query source to execute.
 DeleteByQueryRequest DeleteByQueryRequest.query(Map querySource)
          The query source to execute in the form of a map.
 DeleteByQueryRequest DeleteByQueryRequest.query(QueryBuilder queryBuilder)
          The query source to execute.
 DeleteByQueryRequest DeleteByQueryRequest.query(String querySource)
          The query source to execute.
 DeleteByQueryRequest DeleteByQueryRequest.query(XContentBuilder builder)
           
 

Uses of Required in org.elasticsearch.action.get
 

Methods in org.elasticsearch.action.get with annotations of type Required
 GetRequest GetRequest.id(String id)
          Sets the id of the document to fetch.
 GetRequest GetRequest.index(String index)
          Sets the index of the document to fetch.
 

Uses of Required in org.elasticsearch.action.index
 

Methods in org.elasticsearch.action.index with annotations of type Required
 IndexRequest IndexRequest.source(byte[] source, int offset, int length)
          Sets the document to index in bytes form (assumed to be safe to be used from different threads).
 IndexRequest IndexRequest.source(byte[] source, int offset, int length, boolean unsafe)
          Sets the document to index in bytes form.
 IndexRequest IndexRequest.source(Map source)
          Index the Map as a Requests.INDEX_CONTENT_TYPE.
 IndexRequest IndexRequest.source(Map source, XContentType contentType)
          Index the Map as the provided content type.
 IndexRequest IndexRequest.source(String source)
          Sets the document source to index.
 IndexRequest IndexRequest.source(String field1, Object value1)
           
 IndexRequest IndexRequest.source(String field1, Object value1, String field2, Object value2)
           
 IndexRequest IndexRequest.source(String field1, Object value1, String field2, Object value2, String field3, Object value3)
           
 IndexRequest IndexRequest.source(String field1, Object value1, String field2, Object value2, String field3, Object value3, String field4, Object value4)
           
 IndexRequest IndexRequest.source(XContentBuilder sourceBuilder)
          Sets the content source to index.
 IndexRequest IndexRequest.type(String type)
          Sets the type of the indexed document.
 

Uses of Required in org.elasticsearch.action.mlt
 

Methods in org.elasticsearch.action.mlt with annotations of type Required
 MoreLikeThisRequest MoreLikeThisRequest.id(String id)
          The id of document to load from which the "like" query will execute with.
 MoreLikeThisRequest MoreLikeThisRequest.type(String type)
          The type of document to load from which the "like" query will execute with.
 

Uses of Required in org.elasticsearch.action.percolate
 

Methods in org.elasticsearch.action.percolate with annotations of type Required
 PercolateRequest PercolateRequest.source(byte[] source, int offset, int length)
           
 PercolateRequest PercolateRequest.source(byte[] source, int offset, int length, boolean unsafe)
           
 PercolateRequest PercolateRequest.source(BytesReference source, boolean unsafe)
           
 PercolateRequest PercolateRequest.source(Map source)
           
 PercolateRequest PercolateRequest.source(Map source, XContentType contentType)
           
 PercolateRequest PercolateRequest.source(String source)
           
 PercolateRequest PercolateRequest.source(XContentBuilder sourceBuilder)
           
 



Copyright © 2009-2012. All Rights Reserved.