Uses of Class
com.tableau.hyperapi.SqlType
-
Packages that use SqlType Package Description com.tableau.hyperapi This is the public Tableau Hyper API documentation version 0.0.17782 -
-
Uses of SqlType in com.tableau.hyperapi
Methods in com.tableau.hyperapi that return SqlType Modifier and Type Method Description static SqlTypeSqlType. bigInt()Returns the BIG_INT SQL type.static SqlTypeSqlType. bool()Returns the BOOL SQL type.static SqlTypeSqlType. bytes()Returns the BYTES SQL type.static SqlTypeSqlType. character(int maxLength)Returns the CHAR SQL type.static SqlTypeSqlType. date()Returns the DATE SQL type.static SqlTypeSqlType. doublePrecision()Returns the DOUBLE PRECISION SQL type.static SqlTypeSqlType. geography()Returns the GEOGRAPHY SQL type.SqlTypeResultSchema.Column. getType()Returns the SQL type of the column.SqlTypeTableDefinition.Column. getType()Returns the type of the column.static SqlTypeSqlType. integer()Returns the INT SQL type.static SqlTypeSqlType. interval()Returns the INTERVAL SQL type.static SqlTypeSqlType. json()Returns the JSON SQL type.static SqlTypeSqlType. numeric(int precision, int scale)Returns the NUMERIC SQL type.static SqlTypeSqlType. oid()Returns the OID SQL type.static SqlTypeSqlType. smallInt()Returns the SMALL_INT SQL type.static SqlTypeSqlType. text()Returns the TEXT SQL type.static SqlTypeSqlType. time()Returns the TIME SQL type.static SqlTypeSqlType. timestamp()Returns the TIMESTAMP SQL type.static SqlTypeSqlType. timestampTz()Returns the TIMESTAMP_TZ SQL type.static SqlTypeSqlType. varchar(int maxLength)Returns the VARCHAR SQL type.Methods in com.tableau.hyperapi with parameters of type SqlType Modifier and Type Method Description TableDefinitionTableDefinition. addColumn(java.lang.String columnName, SqlType type)Adds a column to the table definition.TableDefinitionTableDefinition. addColumn(java.lang.String columnName, SqlType type, Nullability nullability)Adds a column to the table definition.TableDefinitionTableDefinition. addColumn(java.lang.String columnName, SqlType type, java.lang.String collation)Adds a column to the table definition.TableDefinitionTableDefinition. addColumn(java.lang.String columnName, SqlType type, java.lang.String collation, Nullability nullability)Adds a column to the table definition.intSqlType. compareTo(SqlType other)Compares this SQL type with the specified SQL type for order.Constructors in com.tableau.hyperapi with parameters of type SqlType Constructor Description Column(Name columnName, SqlType type)Creates a column.Column(Name columnName, SqlType type)Creates a column.Column(Name columnName, SqlType type, Nullability nullability)Creates a column.Column(Name columnName, SqlType type, java.lang.String collation)Creates a column.Column(Name columnName, SqlType type, java.lang.String collation, Nullability nullability)Creates a column.Column(java.lang.String columnName, SqlType type)Creates a column.Column(java.lang.String columnName, SqlType type, Nullability nullability)Creates a column.Column(java.lang.String columnName, SqlType type, java.lang.String collation)Creates a column.Column(java.lang.String columnName, SqlType type, java.lang.String collation, Nullability nullability)Creates a column.
-