| org.mmbase.storage.search.FieldValueBetweenConstraint
All known Subclasses: org.mmbase.storage.search.implementation.BasicFieldValueBetweenConstraint,
FieldValueBetweenConstraint | public interface FieldValueBetweenConstraint extends FieldConstraint(Code) | | A constraint that restricts the value of a stepfield to be in a specified
range of values (numerical or string).
This corresponds to the use of "between ... and ..." in SQL SELECT-syntax.
author: Rob van Maris version: $Id: FieldValueBetweenConstraint.java,v 1.6 2004/12/23 17:31:05 pierre Exp $ since: MMBase-1.7 |
Method Summary | |
Object | getLowerLimit() Gets the value of the lower limit of the range specified for this
constraint. | Object | getUpperLimit() Gets the value of the upper limit of the range specified for this
constraint. | public String | toString() Returns a string representation of this FieldValueBetweenConstraint. |
getLowerLimit | Object getLowerLimit()(Code) | | Gets the value of the lower limit of the range specified for this
constraint.
|
getUpperLimit | Object getUpperLimit()(Code) | | Gets the value of the upper limit of the range specified for this
constraint.
|
toString | public String toString()(Code) | | Returns a string representation of this FieldValueBetweenConstraint.
The string representation has the form
"FieldValueBetweenConstraint(inverse:<:inverse>, field:<field>,
casesensitive:<casesensitive>,
lower:<lowerLimit>, upper:<upperLimit>)"
where
A string representation of this FieldValueInConstraint. |
|
|