Uses of Class
org.apache.lucene.facet.facetset.DimRange
Packages that use DimRange
Package
Description
Provides FacetSets faceting capabilities which allows users to facet on high dimensional field
values.
-
Uses of DimRange in org.apache.lucene.facet.facetset
Methods in org.apache.lucene.facet.facetset that return DimRangeModifier and TypeMethodDescriptionstatic DimRange
DimRange.fromDoubles
(double min, boolean minInclusive, double max, boolean maxInclusive) Creates aDimRange
for the given min and max double values.static DimRange
DimRange.fromFloats
(float min, boolean minInclusive, float max, boolean maxInclusive) Creates aDimRange
for the given min and max float values.static DimRange
DimRange.fromLongs
(long min, boolean minInclusive, long max, boolean maxInclusive) Creates aDimRange
for the given min and max long values.Methods in org.apache.lucene.facet.facetset with parameters of type DimRangeModifier and TypeMethodDescriptionprivate static int
Constructors in org.apache.lucene.facet.facetset with parameters of type DimRangeModifierConstructorDescriptionRangeFacetSetMatcher
(String label, DimRange... dimRanges) Constructs an instance to match facet sets with dimensions that fall within the given ranges.