All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.j256.ormlite.stmt.query.Lt 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#lt}.
 * 
 * @author graywatson
 */
public class Lt extends BaseComparison {

	public Lt(String columnName, boolean isNumber, Object value) {
		super(columnName, isNumber, value);
	}

	@Override
	public StringBuilder appendOperation(StringBuilder sb) {
		sb.append("< ");
		return sb;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy