Interface ISearchGroup<TGroupValue>
LUCENENET specific interface used to provide covariance with the TGroupValue type to simulate Java's wildcard generics.
Namespace: Lucene.Net.Search.Grouping
Assembly: Lucene.Net.Grouping.dll
Syntax
public interface ISearchGroup<out TGroupValue>
Type Parameters
Name | Description |
---|---|
TGroupValue |
Properties
| Improve this Doc View SourceGroupValue
The value that defines this group
Declaration
TGroupValue GroupValue { get; }
Property Value
Type | Description |
---|---|
TGroupValue |
SortValues
The sort values used during sorting. These are the
groupSort field values of the highest rank document
(by the groupSort) within the group. Can be
null
if fillFields=false
had
been passed to GetTopGroups(Int32, Boolean)
Declaration
object[] SortValues { get; set; }
Property Value
Type | Description |
---|---|
System.Object[] |