de.jaggl.sqlbuilder.columns.configurable.NullableColumnBuilder 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.columns.configurable;
/**
* @author Martin Schumacher
*
* @since 2.0.0
*/
public interface NullableColumnBuilder>
{
T nullable(boolean nullable);
default T nullable()
{
return nullable(true);
}
default T notNull()
{
return nullable(false);
}
}