new comparison method Ine (caseInsensitive notEquals) (#1551)

This commit is contained in:
Roland Praml
2018-11-19 22:22:46 +13:00
committed by Rob Bygrave
parent 7be4675d3e
commit 4fe2016891
22 changed files with 1487 additions and 1008 deletions
@@ -48,6 +48,13 @@ public interface DocQueryContext {
*/
void writeIEqualTo(String propName, String value) throws IOException;
/**
* Write a case insensitive notEqualTo expression.
*/
default void writeINotEqualTo(String propName, String value) throws IOException {
throw new AbstractMethodError("writeINotEqualTo not implemented");
}
/**
* Write a range operation with one value.
*/