File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
src/main/java/com/arangodb/entity/arangosearch/analyzer Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 28
28
/**
29
29
* An Analyzer capable of chaining effects of multiple Analyzers into one. The pipeline is a list of Analyzers, where
30
30
* the output of an Analyzer is passed to the next for further processing.
31
- *
31
+ * <p/>
32
+ * <b>LIMITATIONS</b>: Analyzers of types {@link GeoPointAnalyzer} and {@link GeoJSONAnalyzer} cannot be used in pipelines and
33
+ * will make the creation fail.
34
+ * <p/>
32
35
* @author Michele Rastelli
33
36
* @see <a href= "https://www.arangodb.com/docs/stable/arangosearch-analyzers.html#pipeline">API Documentation</a>
34
37
* @since ArangoDB 3.8
Original file line number Diff line number Diff line change @@ -33,9 +33,12 @@ public class PipelineAnalyzerProperties {
33
33
34
34
/**
35
35
* Appends the specified analyzer to the end of the pipeline.
36
+ * <p/>
37
+ * <b>LIMITATIONS</b>: Analyzers of types {@link GeoPointAnalyzer} and {@link GeoJSONAnalyzer} cannot be used in
38
+ * pipelines and will make the creation fail.
39
+ * <p/>
36
40
*
37
- * @param analyzer
38
- * analyzer to be appended
41
+ * @param analyzer analyzer to be appended
39
42
* @return this
40
43
*/
41
44
public PipelineAnalyzerProperties addAnalyzer (final SearchAnalyzer analyzer ) {
You can’t perform that action at this time.
0 commit comments