de.jaggl.sqlbuilder.functions.Max 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 lombok.ToString;
/**
* @author Martin Schumacher
*
* @since 2.0.0
*/
@ToString(callSuper = true)
public class Max extends NumberColumnFunction
{
public Max(Column column)
{
super(column, "MAX");
}
public Max(Column column, String alias)
{
super(column, "MAX", alias);
}
public Max as(String alias)
{
return new Max(column, alias);
}
}