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

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

	public Eq(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