org.n3r.eql.parser.IfCondition 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;
import lombok.Value;
@Value
public class IfCondition {
private String expr;
private MultiPart value;
public IfCondition(String expr, MultiPart value) {
this.expr = ParserUtils.trim(expr);
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy