Class FilterRangeValue
- java.lang.Object
-
- com.broadleafcommerce.search.api.domain.FilterRangeValue
-
public class FilterRangeValue extends Object
-
-
Constructor Summary
Constructors Constructor Description FilterRangeValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetMaxValue()The maximum value to be applied on this filter.StringgetMinValue()The minimum value to be applied on this filter value.inthashCode()voidsetMaxValue(String maxValue)The maximum value to be applied on this filter.voidsetMinValue(String minValue)The minimum value to be applied on this filter value.StringtoString()
-
-
-
Method Detail
-
getMinValue
public String getMinValue()
The minimum value to be applied on this filter value. Cannot be used in combination with filter values.- Returns:
- minimum value to be applied on this filter, or null if not ranged
-
getMaxValue
public String getMaxValue()
The maximum value to be applied on this filter. Cannot be used in combination with filter values.- Returns:
- maximum value to be applied on this filter, or null if not ranged
-
setMinValue
public void setMinValue(String minValue)
The minimum value to be applied on this filter value. Cannot be used in combination with filter values.- Parameters:
minValue- minimum value to be applied on this filter
-
setMaxValue
public void setMaxValue(String maxValue)
The maximum value to be applied on this filter. Cannot be used in combination with filter values.- Parameters:
maxValue- maximum value to be applied on this filter
-
canEqual
protected boolean canEqual(Object other)
-
-