update doc
This commit is contained in:
parent
88ba980f79
commit
57a21bedd2
|
@ -22,7 +22,7 @@ package org.elasticsearch.search.facets;
|
||||||
import org.elasticsearch.ElasticSearchException;
|
import org.elasticsearch.ElasticSearchException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public class FacetPhaseExecutionException extends ElasticSearchException {
|
public class FacetPhaseExecutionException extends ElasticSearchException {
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ import org.elasticsearch.util.io.stream.Streamable;
|
||||||
import org.elasticsearch.util.xcontent.ToXContent;
|
import org.elasticsearch.util.xcontent.ToXContent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public interface InternalFacet extends Facet, Streamable, ToXContent {
|
public interface InternalFacet extends Facet, Streamable, ToXContent {
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ import org.apache.lucene.search.Collector;
|
||||||
import org.elasticsearch.search.facets.Facet;
|
import org.elasticsearch.search.facets.Facet;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public abstract class FacetCollector extends Collector {
|
public abstract class FacetCollector extends Collector {
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ import org.elasticsearch.util.xcontent.XContentParser;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public interface FacetCollectorParser {
|
public interface FacetCollectorParser {
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ import org.elasticsearch.util.xcontent.builder.XContentBuilder;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public class InternalQueryFacet implements QueryFacet, InternalFacet {
|
public class InternalQueryFacet implements QueryFacet, InternalFacet {
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ import org.elasticsearch.util.lucene.docset.DocSets;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public class QueryFacetCollector extends FacetCollector {
|
public class QueryFacetCollector extends FacetCollector {
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ import org.elasticsearch.search.internal.SearchContext;
|
||||||
import org.elasticsearch.util.xcontent.XContentParser;
|
import org.elasticsearch.util.xcontent.XContentParser;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public class QueryFacetCollectorParser implements FacetCollectorParser {
|
public class QueryFacetCollectorParser implements FacetCollectorParser {
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public class InternalTermsFacet implements InternalFacet, TermsFacet {
|
public class InternalTermsFacet implements InternalFacet, TermsFacet {
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ import java.util.Deque;
|
||||||
import static org.elasticsearch.index.field.FieldDataOptions.*;
|
import static org.elasticsearch.index.field.FieldDataOptions.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public class TermFacetCollector extends FacetCollector {
|
public class TermFacetCollector extends FacetCollector {
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ import org.elasticsearch.util.xcontent.XContentParser;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public class TermFacetCollectorParser implements FacetCollectorParser {
|
public class TermFacetCollectorParser implements FacetCollectorParser {
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ import java.util.Comparator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (Shay Banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public interface TermsFacet extends Facet, Iterable<TermsFacet.Entry> {
|
public interface TermsFacet extends Facet, Iterable<TermsFacet.Entry> {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue