Package org.apache.lucene.spatial.prefix
Class NumberRangePrefixTreeStrategy.Facets.FacetParentVal
java.lang.Object
org.apache.lucene.spatial.prefix.NumberRangePrefixTreeStrategy.Facets.FacetParentVal
- Enclosing class:
- NumberRangePrefixTreeStrategy.Facets
Holds a block of detailLevel counts aggregated to their parent level.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionint[]The detail level counts.intThe length ofchildCounts.intThe count of ranges that span all of the childCounts.
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Field Details- 
parentLeavespublic int parentLeavesThe count of ranges that span all of the childCounts. In more technical terms, this is the number of leaf cells found at this parent. Treat this likeNumberRangePrefixTreeStrategy.Facets.topLeaves.
- 
childCountsLenpublic int childCountsLenThe length ofchildCounts. If childCounts is not null then this is childCounts.length, otherwise it says how long it would have been if it weren't null.
- 
childCountspublic int[] childCountsThe detail level counts. It will be null if there are none, and thus they are assumed 0. Most apps, when presenting the information, will addNumberRangePrefixTreeStrategy.Facets.topLeavesandparentLeavesto each count.
 
- 
- 
Constructor Details- 
FacetParentValpublic FacetParentVal()
 
-