Interface TermsAggregationBuilder<K>
-
- All Superinterfaces:
SearchAggregationBuilder<Map<K,Long>>
public interface TermsAggregationBuilder<K> extends SearchAggregationBuilder<Map<K,Long>>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
TermsAggregationBuilder.TypeSelector
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
filter(SearchPredicate filter)
void
maxTermCount(int maxTermCount)
void
minDocumentCount(int minDocumentCount)
void
orderByCountAscending()
void
orderByCountDescending()
void
orderByTermAscending()
void
orderByTermDescending()
-
Methods inherited from interface org.hibernate.search.engine.search.aggregation.spi.SearchAggregationBuilder
build
-
-
-
-
Method Detail
-
filter
void filter(SearchPredicate filter)
-
orderByCountDescending
void orderByCountDescending()
-
orderByCountAscending
void orderByCountAscending()
-
orderByTermDescending
void orderByTermDescending()
-
orderByTermAscending
void orderByTermAscending()
-
minDocumentCount
void minDocumentCount(int minDocumentCount)
-
maxTermCount
void maxTermCount(int maxTermCount)
-
-