summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/elasticsearch/search/suggest/completion
diff options
context:
space:
mode:
authorNik Everett <nik9000@gmail.com>2016-08-01 07:43:13 -0400
committerGitHub <noreply@github.com>2016-08-01 07:43:13 -0400
commitaefc36bfaa558aea3d8c787ef5d7ec1e27b27e86 (patch)
tree3027bf7233a4e25eb1381344484bc8b9149052fa /core/src/main/java/org/elasticsearch/search/suggest/completion
parent7c6527ed09fbe3db72607bd4a2e2bdb31401c529 (diff)
Add descriptions for o.e.search.suggest packages (#19699)
Let's have readable javadoc!
Diffstat (limited to 'core/src/main/java/org/elasticsearch/search/suggest/completion')
-rw-r--r--core/src/main/java/org/elasticsearch/search/suggest/completion/context/package-info.java23
-rw-r--r--core/src/main/java/org/elasticsearch/search/suggest/completion/package-info.java23
2 files changed, 46 insertions, 0 deletions
diff --git a/core/src/main/java/org/elasticsearch/search/suggest/completion/context/package-info.java b/core/src/main/java/org/elasticsearch/search/suggest/completion/context/package-info.java
new file mode 100644
index 0000000000..ba529e687c
--- /dev/null
+++ b/core/src/main/java/org/elasticsearch/search/suggest/completion/context/package-info.java
@@ -0,0 +1,23 @@
+/*
+ * Licensed to Elasticsearch under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/**
+ * Support for limiting the completion suggesters results to within a "context" like a geographic location or a category.
+ */
+package org.elasticsearch.search.suggest.completion.context;
diff --git a/core/src/main/java/org/elasticsearch/search/suggest/completion/package-info.java b/core/src/main/java/org/elasticsearch/search/suggest/completion/package-info.java
new file mode 100644
index 0000000000..dfa3f548e8
--- /dev/null
+++ b/core/src/main/java/org/elasticsearch/search/suggest/completion/package-info.java
@@ -0,0 +1,23 @@
+/*
+ * Licensed to Elasticsearch under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/**
+ * Suggests alternate queries by fancy prefix matching.
+ */
+package org.elasticsearch.search.suggest.completion;