de.jaggl.sqlbuilder.domain.Valuable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlbuilder-core Show documentation
Show all versions of sqlbuilder-core Show documentation
A Java-Library to build SQL-Statements
package de.jaggl.sqlbuilder.domain;
import de.jaggl.sqlbuilder.utils.Indentation;
/**
* @author Martin Schumacher
*
* @since 2.0.0
*/
public interface Valuable
{
String getValue(BuildingContext context, Indentation indentation);
public static PlainValuable plain(String value)
{
return new PlainValuable(new Plain(value));
}
}