Java org.springframework.data.solr.core.query GroupOptions fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.solr.core.query GroupOptions fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.solr.core.query GroupOptions.

The text is from its open source code.

Constructor

Method

GroupOptionsaddGroupByField(Field field)
Adds a group request for a Field .
GroupOptionsaddGroupByField(String fieldName)
Adds a group request for a Field using its name.
GroupOptionsaddGroupByFunction(Function function)
Adds a group request for a Function result.
GroupOptionsaddGroupByQuery(Query query)
Adds a group request for a Query result.
GroupOptionsaddSort(@Nullable Sort sort)
Adds Sort to instruct how to sort elements within a single group.
intgetCachePercent()
ListgetGroupByFields()
List of Field s to perform grouping by.
ListgetGroupByFunctions()
List of Function s to perform grouping by.
ListgetGroupByQueries()
List of Query s to perform grouping by.
IntegergetLimit()
IntegergetOffset()
SortgetSort()
booleanisGroupFacets()
booleanisGroupMain()
booleanisTotalCount()
booleanisTruncateFacets()
GroupOptionssetLimit(Integer limit)
Sets the number of rows to return for each group.
GroupOptionssetOffset(@Nullable Integer offset)
Sets the initial offset of each group.
GroupOptionssetTotalCount(boolean groupCount)
Defines whether the group count should be included in the response.