
com.j256.ormlite.stmt.query.Le Maven / Gradle / Ivy
package com.j256.ormlite.stmt.query;
import com.j256.ormlite.stmt.Where;
/**
* Internal class handling the SQL '<=' comparison query part. Used by {@link Where#le}.
*
* @author graywatson
*/
public class Le extends BaseComparison {
public Le(String columnName, boolean isNumber, Object value) {
super(columnName, isNumber, value);
}
@Override
public StringBuilder appendOperation(StringBuilder sb) {
sb.append("<= ");
return sb;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy