org.n3r.eql.parser.IsNotNullParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eql Show documentation
Show all versions of eql Show documentation
a simple wrapper framework for jdbc to seperate sql and java code
package org.n3r.eql.parser;
public class IsNotNullParser extends IsEmptyParser {
public IsNotNullParser(String expr) {
super(expr);
}
@Override
public EqlPart createPart() {
return new IsNotNullPart(expr, multiPart, elsePart);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy