#422 - ENH: Add jsonBetween() expression

This commit is contained in:
Robin Bygrave
2015-09-22 12:32:46 +12:00
parent d022e4aec8
commit 11301846be
7 changed files with 70 additions and 1 deletions
@@ -76,6 +76,11 @@ public interface ExpressionFactory {
*/
Expression jsonLessOrEqualTo(String propertyName, String path, Object val);
/**
* Between - for the given path in a JSON document.
*/
Expression jsonBetween(String propertyName, String path, Object lowerValue, Object upperValue);
/**
* Equal To - property equal to the given value.
*/