Uses of Class
org.elasticsearch.action.admin.indices.create.CreateIndexRequestBuilder

Packages that use CreateIndexRequestBuilder
org.elasticsearch.action.admin.indices.create Create index action. 
org.elasticsearch.client The client module allowing to easily perform actions/operations. 
org.elasticsearch.client.support   
 

Uses of CreateIndexRequestBuilder in org.elasticsearch.action.admin.indices.create
 

Methods in org.elasticsearch.action.admin.indices.create that return CreateIndexRequestBuilder
 CreateIndexRequestBuilder CreateIndexRequestBuilder.addMapping(String type, Map<String,Object> source)
          Adds mapping that will be added when the index gets created.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.addMapping(String type, String source)
          Adds mapping that will be added when the index gets created.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.addMapping(String type, XContentBuilder source)
          Adds mapping that will be added when the index gets created.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.cause(String cause)
          The cause for this index creation.
 CreateIndexRequestBuilder CreateIndexAction.newRequestBuilder(IndicesAdminClient client)
           
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setCustom(IndexMetaData.Custom custom)
           
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setIndex(String index)
           
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setMasterNodeTimeout(String timeout)
          Sets the master node timeout in case the master has not yet been discovered.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setMasterNodeTimeout(TimeValue timeout)
          Sets the master node timeout in case the master has not yet been discovered.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSettings(Map<String,Object> source)
          The settings to crete the index with (either json/yaml/properties format)
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSettings(Settings.Builder settings)
          The settings to created the index with.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSettings(Settings settings)
          The settings to created the index with.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSettings(String source)
          The settings to crete the index with (either json/yaml/properties format)
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSettings(XContentBuilder builder)
          Allows to set the settings using a json builder.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSource(byte[] source)
          Sets the settings and mappings as a single source.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSource(byte[] source, int offset, int length)
          Sets the settings and mappings as a single source.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSource(BytesReference source)
          Sets the settings and mappings as a single source.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSource(Map<String,Object> source)
          Sets the settings and mappings as a single source.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSource(String source)
          Sets the settings and mappings as a single source.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSource(XContentBuilder source)
          Sets the settings and mappings as a single source.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setTimeout(String timeout)
          Timeout to wait for the index creation to be acknowledged by current cluster nodes.
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setTimeout(TimeValue timeout)
          Timeout to wait for the index creation to be acknowledged by current cluster nodes.
 

Uses of CreateIndexRequestBuilder in org.elasticsearch.client
 

Methods in org.elasticsearch.client that return CreateIndexRequestBuilder
 CreateIndexRequestBuilder IndicesAdminClient.prepareCreate(String index)
          Creates an index using an explicit request allowing to specify the settings of the index.
 

Uses of CreateIndexRequestBuilder in org.elasticsearch.client.support
 

Methods in org.elasticsearch.client.support that return CreateIndexRequestBuilder
 CreateIndexRequestBuilder AbstractIndicesAdminClient.prepareCreate(String index)
           
 



Copyright © 2009-2012. All Rights Reserved.