Class AbstractGroupFacetCollector.AbstractSegmentResult
Contains the local grouped segment counts for a particular segment. Each AbstractGroupFacetCollector.AbstractSegmentResult must be added together.
Inheritance
System.Object
    AbstractGroupFacetCollector.AbstractSegmentResult
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: Lucene.Net.Search.Grouping
Assembly: Lucene.Net.Grouping.dll
Syntax
protected abstract class AbstractSegmentResult
  Remarks
LUCENENET NOTE: Renamed from SegmentResult to AbstractSegmentResult to avoid naming conflicts with subclasses.
Constructors
| Improve this Doc View SourceAbstractSegmentResult(Int32[], Int32, Int32, Int32)
Declaration
protected AbstractSegmentResult(int[] counts, int total, int missing, int maxTermPos)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32[] | counts | |
| System.Int32 | total | |
| System.Int32 | missing | |
| System.Int32 | maxTermPos | 
Fields
| Improve this Doc View Sourcem_counts
Declaration
protected readonly int[] m_counts
  Field Value
| Type | Description | 
|---|---|
| System.Int32[] | 
m_maxTermPos
Declaration
protected readonly int m_maxTermPos
  Field Value
| Type | Description | 
|---|---|
| System.Int32 | 
m_mergePos
Declaration
protected int m_mergePos
  Field Value
| Type | Description | 
|---|---|
| System.Int32 | 
m_mergeTerm
Declaration
protected BytesRef m_mergeTerm
  Field Value
| Type | Description | 
|---|---|
| BytesRef | 
m_missing
Declaration
protected readonly int m_missing
  Field Value
| Type | Description | 
|---|---|
| System.Int32 | 
m_total
Declaration
protected readonly int m_total
  Field Value
| Type | Description | 
|---|---|
| System.Int32 | 
Methods
| Improve this Doc View SourceNextTerm()
Go to next term in this AbstractGroupFacetCollector.AbstractSegmentResult in order to retrieve the grouped facet counts.
Declaration
protected abstract void NextTerm()
  Exceptions
| Type | Condition | 
|---|---|
| System.IO.IOException | If I/O related errors occur  |