Creates a Between expression. It evaluates to true when the expression is contained in the [lowerBounds, upperBounds] interval.
true
lowerBounds
upperBounds
FilterFactory.between( FilterFactory.property("total_population"), FilterFactory.literal(10000), FilterFactory.literal(20000) ); FilterFactory.between( FilterFactory.func( "getTotalPopulation" ), FilterFactory.literal(10000), FilterFactory.literal(20000) ); Copy
FilterFactory.between( FilterFactory.property("total_population"), FilterFactory.literal(10000), FilterFactory.literal(20000) ); FilterFactory.between( FilterFactory.func( "getTotalPopulation" ), FilterFactory.literal(10000), FilterFactory.literal(20000) );
the expression to evaluate
the lower bounds of the interval
the upper bounds of the interval
The Between expression
Creates a Between expression. It evaluates to
true
when the expression is contained in the [lowerBounds
,upperBounds
] interval.