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 boolean
canEqual(Object other)
boolean
equals(Object o)
String
getMaxValue()
The maximum value to be applied on this filter.String
getMinValue()
The minimum value to be applied on this filter value.int
hashCode()
void
setMaxValue(String maxValue)
The maximum value to be applied on this filter.void
setMinValue(String minValue)
The minimum value to be applied on this filter value.String
toString()
-
-
-
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)
-
-