Enum Class FacetParams.FacetRangeInclude

java.lang.Object
java.lang.Enum<FacetParams.FacetRangeInclude>
org.apache.solr.common.params.FacetParams.FacetRangeInclude
All Implemented Interfaces:
Serializable, Comparable<FacetParams.FacetRangeInclude>, java.lang.constant.Constable
Enclosing interface:
FacetParams

public static enum FacetParams.FacetRangeInclude extends Enum<FacetParams.FacetRangeInclude>
An enumeration of the legal values for FacetParams.FACET_DATE_INCLUDE and FacetParams.FACET_RANGE_INCLUDE
  • lower = all gap based ranges include their lower bound
  • upper = all gap based ranges include their upper bound
  • edge = the first and last gap ranges include their edge bounds (ie: lower for the first one, upper for the last one) even if the corresponding upper/lower option is not specified
  • outer = the BEFORE and AFTER ranges should be inclusive of their bounds, even if the first or last ranges already include those boundaries.
  • all = shorthand for lower, upper, edge, and outer
See Also: