io.github.wycst.wast.jdbc.executer.BetweenFieldCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wast Show documentation
Show all versions of wast Show documentation
Wast is a high-performance Java toolset library package that includes JSON, YAML, CSV, HttpClient, JDBC and EL engines
package io.github.wycst.wast.jdbc.executer;
import java.io.Serializable;
import java.util.List;
class BetweenFieldCondition extends FieldCondition {
final Serializable left;
final Serializable right;
public BetweenFieldCondition(String field, Serializable left, Serializable right) {
super(field, null);
left.getClass();
right.getClass();
this.left = left;
this.right = right;
}
@Override
public String getOperator() {
return "BETWEEN";
}
@Override
public void appendWhereValue(StringBuilder whereBuilder, List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy