org.hibernate.search.query.facet
Interface RangeFacet<T>

All Superinterfaces:
Facet
All Known Implementing Classes:
RangeFacetImpl

public interface RangeFacet<T>
extends Facet

Author:
Hardy Ferentschik

Method Summary
 T getMax()
           
 T getMin()
           
 boolean isIncludeMax()
           
 boolean isIncludeMin()
           
 
Methods inherited from interface org.hibernate.search.query.facet.Facet
getCount, getFacetingName, getFacetQuery, getFieldName, getValue
 

Method Detail

getMin

T getMin()
Returns:
the lower boundary of this range

getMax

T getMax()
Returns:
the upper boundary of this range

isIncludeMin

boolean isIncludeMin()
Returns:
true if the lower boundary is included in the range, false otherwise

isIncludeMax

boolean isIncludeMax()
Returns:
true if the upper boundary is included in the range, false otherwise


Copyright © 2006-2012 Red Hat Middleware, LLC. All Rights Reserved