mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
new comparison method Ine (caseInsensitive notEquals) (#1551)
This commit is contained in:
committed by
Rob Bygrave
parent
7be4675d3e
commit
4fe2016891
@@ -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.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user