de.jaggl.sqlbuilder.functions.Count 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.functions;
import de.jaggl.sqlbuilder.columns.Column;
import de.jaggl.sqlbuilder.domain.BuildingContext;
import de.jaggl.sqlbuilder.utils.Indentation;
import lombok.ToString;
/**
* @author Martin Schumacher
*
* @since 2.0.0
*/
@ToString(callSuper = true)
public class Count extends NumberColumnFunction
{
public Count(Column column)
{
super(column, "COUNT");
}
public Count(Column column, String alias)
{
super(column, "COUNT", alias);
}
public Count as(String alias)
{
return new Count(column, alias);
}
@Override
public String getValue(BuildingContext context, Indentation indentation)
{
return definition + "(" + (column != null ? column.getFullNameOrAlias(context) : "*") + ")";
}
}