de.jaggl.sqlbuilder.columns.string.CharColumnBuilder 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.string;
import de.jaggl.sqlbuilder.columns.ColumnDefinition;
import de.jaggl.sqlbuilder.domain.IntSize;
import de.jaggl.sqlbuilder.schema.Table;
/**
* @author Martin Schumacher
*
* @since 2.0.0
*/
public class CharColumnBuilder extends StringColumnBuilder
{
private IntSize size;
public CharColumnBuilder(Table table, String name)
{
super(table, name);
}
public CharColumnBuilder size(int value)
{
size = IntSize.valueOf(Integer.valueOf(value));
return this;
}
public CharColumnBuilder size(Integer value)
{
size = IntSize.valueOf(value);
return this;
}
@Override
protected CharColumn getColumnInstance()
{
return new CharColumn(table, name, null, new ColumnDefinition("CHAR", size, isNullable, isDefaultNull, false, false, defaultValue));
}
}