Class LongRange
- java.lang.Object
- 
- org.apache.lucene.facet.rangeonrange.Range
- 
- org.apache.lucene.facet.rangeonrange.LongRange
 
 
- 
 public class LongRange extends Range Represents a long range for RangeOnRange faceting
- 
- 
Constructor SummaryConstructors Constructor Description LongRange(String label, long[] min, long[] max)Represents a multidimensional long range for RangeOnRange facetingLongRange(String label, long minIn, boolean minInclusive, long maxIn, boolean maxInclusive)Represents a single dimensional long range for RangeOnRange faceting
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)inthashCode()StringtoString()- 
Methods inherited from class org.apache.lucene.facet.rangeonrange.RangefailNoMatch, getLabelsFromRanges
 
- 
 
- 
- 
- 
Constructor Detail- 
LongRangepublic LongRange(String label, long minIn, boolean minInclusive, long maxIn, boolean maxInclusive) Represents a single dimensional long range for RangeOnRange faceting- Parameters:
- label- the name of the range
- minIn- the minimum
- minInclusive- if the minimum is inclusive
- maxIn- the maximum
- maxInclusive- if the maximum is inclusive
 
 - 
LongRangepublic LongRange(String label, long[] min, long[] max) Represents a multidimensional long range for RangeOnRange faceting- Parameters:
- label- the name of the range
- min- the minimum, inclusive
- max- the maximum, inclusive
 
 
- 
 
-