Package | Description |
---|---|
org.elasticsearch.action.admin.indices.analyze | |
org.elasticsearch.client |
The client module allowing to easily perform actions/operations.
|
org.elasticsearch.client.support |
Modifier and Type | Method and Description |
---|---|
AnalyzeRequestBuilder |
AnalyzeAction.newRequestBuilder(IndicesAdminClient client) |
AnalyzeRequestBuilder |
AnalyzeRequestBuilder.setAnalyzer(String analyzer)
Sets the analyzer name to use in order to analyze the text.
|
AnalyzeRequestBuilder |
AnalyzeRequestBuilder.setCharFilters(String... charFilters)
Sets char filters that will be used before the tokenizer.
|
AnalyzeRequestBuilder |
AnalyzeRequestBuilder.setField(String field)
Sets the field that its analyzer will be used to analyze the text.
|
AnalyzeRequestBuilder |
AnalyzeRequestBuilder.setIndex(String index)
Sets the index to use to analyzer the text (for example, if it holds specific analyzers
registered).
|
AnalyzeRequestBuilder |
AnalyzeRequestBuilder.setTokenFilters(String... tokenFilters)
Sets token filters that will be used on top of a tokenizer provided.
|
AnalyzeRequestBuilder |
AnalyzeRequestBuilder.setTokenizer(String tokenizer)
Instead of setting the analyzer, sets the tokenizer that will be used as part of a custom
analyzer.
|
Modifier and Type | Method and Description |
---|---|
AnalyzeRequestBuilder |
IndicesAdminClient.prepareAnalyze(String text)
Analyze text.
|
AnalyzeRequestBuilder |
IndicesAdminClient.prepareAnalyze(String index,
String text)
Analyze text under the provided index.
|
Modifier and Type | Method and Description |
---|---|
AnalyzeRequestBuilder |
AbstractIndicesAdminClient.prepareAnalyze(String text) |
AnalyzeRequestBuilder |
AbstractIndicesAdminClient.prepareAnalyze(String index,
String text) |
Copyright © 2009–2015. All rights reserved.