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

com.j256.ormlite.stmt.query.Clause Maven / Gradle / Ivy

package com.j256.ormlite.stmt.query;

import java.util.List;

import com.j256.ormlite.db.DatabaseType;
import com.j256.ormlite.stmt.SelectArg;

/**
 * Internal marker class for query clauses.
 * 
 * @author graywatson
 */
public interface Clause {

	/**
	 * Add to the string-builder the appropriate SQL for this clause.
	 */
	public StringBuilder appendSql(DatabaseType databaseType, StringBuilder sb, List selectArgList);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy