mirror of https://github.com/apache/lucene.git
fix javadoc issues
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@573774 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1ce8c6feb3
commit
e595f5e7ce
|
@ -79,7 +79,7 @@ public class SimpleFacets {
|
||||||
* @see #getFacetQueryCounts
|
* @see #getFacetQueryCounts
|
||||||
* @see #getFacetFieldCounts
|
* @see #getFacetFieldCounts
|
||||||
* @see #getFacetDateCounts
|
* @see #getFacetDateCounts
|
||||||
* @see SolrParams#FACET
|
* @see FacetParams#FACET
|
||||||
* @return a NamedList of Facet Count info or null
|
* @return a NamedList of Facet Count info or null
|
||||||
*/
|
*/
|
||||||
public NamedList getFacetCounts() {
|
public NamedList getFacetCounts() {
|
||||||
|
@ -106,7 +106,7 @@ public class SimpleFacets {
|
||||||
* Returns a list of facet counts for each of the facet queries
|
* Returns a list of facet counts for each of the facet queries
|
||||||
* specified in the params
|
* specified in the params
|
||||||
*
|
*
|
||||||
* @see SolrParams#FACET_QUERY
|
* @see FacetParams#FACET_QUERY
|
||||||
*/
|
*/
|
||||||
public NamedList getFacetQueryCounts() throws IOException,ParseException {
|
public NamedList getFacetQueryCounts() throws IOException,ParseException {
|
||||||
|
|
||||||
|
@ -165,7 +165,7 @@ public class SimpleFacets {
|
||||||
* Returns a list of value constraints and the associated facet counts
|
* Returns a list of value constraints and the associated facet counts
|
||||||
* for each facet field specified in the params.
|
* for each facet field specified in the params.
|
||||||
*
|
*
|
||||||
* @see SolrParams#FACET_FIELD
|
* @see FacetParams#FACET_FIELD
|
||||||
* @see #getFieldMissingCount
|
* @see #getFieldMissingCount
|
||||||
* @see #getFacetTermEnumCounts
|
* @see #getFacetTermEnumCounts
|
||||||
*/
|
*/
|
||||||
|
@ -186,7 +186,7 @@ public class SimpleFacets {
|
||||||
* Returns a count of the documents in the set which do not have any
|
* Returns a count of the documents in the set which do not have any
|
||||||
* terms for for the specified field.
|
* terms for for the specified field.
|
||||||
*
|
*
|
||||||
* @see SolrParams#FACET_MISSING
|
* @see FacetParams#FACET_MISSING
|
||||||
*/
|
*/
|
||||||
public static int getFieldMissingCount(SolrIndexSearcher searcher, DocSet docs, String fieldName)
|
public static int getFieldMissingCount(SolrIndexSearcher searcher, DocSet docs, String fieldName)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
|
@ -321,9 +321,9 @@ public class SimpleFacets {
|
||||||
* This method uses the FilterCache to get the intersection count between <code>docs</code>
|
* This method uses the FilterCache to get the intersection count between <code>docs</code>
|
||||||
* and the DocSet for each term in the filter.
|
* and the DocSet for each term in the filter.
|
||||||
*
|
*
|
||||||
* @see SolrParams#FACET_LIMIT
|
* @see FacetParams#FACET_LIMIT
|
||||||
* @see SolrParams#FACET_ZEROS
|
* @see FacetParams#FACET_ZEROS
|
||||||
* @see SolrParams#FACET_MISSING
|
* @see FacetParams#FACET_MISSING
|
||||||
*/
|
*/
|
||||||
public NamedList getFacetTermEnumCounts(SolrIndexSearcher searcher, DocSet docs, String field, int offset, int limit, int mincount, boolean missing, boolean sort, String prefix)
|
public NamedList getFacetTermEnumCounts(SolrIndexSearcher searcher, DocSet docs, String field, int offset, int limit, int mincount, boolean missing, boolean sort, String prefix)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
|
@ -419,7 +419,7 @@ public class SimpleFacets {
|
||||||
* for each facet date field, range, and interval specified in the
|
* for each facet date field, range, and interval specified in the
|
||||||
* SolrParams
|
* SolrParams
|
||||||
*
|
*
|
||||||
* @see SolrParams#FACET_DATE
|
* @see FacetParams#FACET_DATE
|
||||||
*/
|
*/
|
||||||
public NamedList getFacetDateCounts()
|
public NamedList getFacetDateCounts()
|
||||||
throws IOException {
|
throws IOException {
|
||||||
|
@ -545,7 +545,6 @@ public class SimpleFacets {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Macro for getting the numDocs of a ConstantScoreRangeQuery over docs
|
* Macro for getting the numDocs of a ConstantScoreRangeQuery over docs
|
||||||
* @see docs
|
|
||||||
* @see SolrIndexSearcher#numDocs
|
* @see SolrIndexSearcher#numDocs
|
||||||
* @see ConstantScoreRangeQuery
|
* @see ConstantScoreRangeQuery
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue