Class AbstractCommonResultsBuilder<T>
- java.lang.Object
- 
- com.lucidworks.search.dsl.request.AbstractCommonResultsBuilder<T>
 
- 
- Direct Known Subclasses:
- ResultsAbstractBuilder
 
 public abstract class AbstractCommonResultsBuilder<T> extends java.lang.Object
- 
- 
Constructor SummaryConstructors Constructor Description AbstractCommonResultsBuilder()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description TwithField(java.lang.String field)TwithFields(java.util.List<java.lang.String> fields)TwithSize(java.lang.Long size)TwithSort(SortElement sort)TwithSort(SortElement.Type type, java.lang.String value, SortElement.Order order, Query query)TwithSort(java.util.List<SortElement> sorts)TwithSortAsc(java.lang.String value)TwithSortByQuery(Query query, SortElement.Order order)QueryBuilder<T>withSortByQueryAsc()TwithSortByQueryAsc(Query query)QueryBuilder<T>withSortByQueryDesc()TwithSortByQueryDesc(Query query)TwithSortByRelevancy()TwithSortDesc(java.lang.String value)TwithSortExpressionAsc(java.lang.String expression)TwithSortExpressionDesc(java.lang.String expression)TwithStart(java.lang.Long start)
 
- 
- 
- 
Method Detail- 
withStartpublic T withStart(java.lang.Long start) 
 - 
withSizepublic T withSize(java.lang.Long size) 
 - 
withFieldpublic T withField(java.lang.String field) 
 - 
withFieldspublic T withFields(java.util.List<java.lang.String> fields) 
 - 
withSortpublic T withSort(SortElement sort) 
 - 
withSortpublic T withSort(java.util.List<SortElement> sorts) 
 - 
withSortByRelevancypublic T withSortByRelevancy() 
 - 
withSortAscpublic T withSortAsc(java.lang.String value) 
 - 
withSortDescpublic T withSortDesc(java.lang.String value) 
 - 
withSortExpressionAscpublic T withSortExpressionAsc(java.lang.String expression) 
 - 
withSortExpressionDescpublic T withSortExpressionDesc(java.lang.String expression) 
 - 
withSortByQueryDescpublic QueryBuilder<T> withSortByQueryDesc() 
 - 
withSortByQueryDescpublic T withSortByQueryDesc(Query query) 
 - 
withSortByQueryAscpublic QueryBuilder<T> withSortByQueryAsc() 
 - 
withSortByQueryAscpublic T withSortByQueryAsc(Query query) 
 - 
withSortByQuerypublic T withSortByQuery(Query query, SortElement.Order order) 
 - 
withSortpublic T withSort(SortElement.Type type, java.lang.String value, SortElement.Order order, Query query) 
 
- 
 
-