Uses of Class
org.eclipse.dirigible.database.sql.DataType
-
Uses of DataType in org.eclipse.dirigible.database.sql
Methods in org.eclipse.dirigible.database.sql that return DataType Modifier and Type Method Description static DataTypeDataTypeUtils. getDatabaseType(Integer type)Gets the database type.static DataTypeDataType. valueOf(String name)Returns the enum constant of this type with the specified name.static DataTypeDataType. valueOfByName(String name)Value of by name.static DataType[]DataType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.eclipse.dirigible.database.sql with parameters of type DataType Modifier and Type Method Description StringISqlDialect. getDataTypeName(DataType dataType)Default implementation returns the direct toString() conversion. -
Uses of DataType in org.eclipse.dirigible.database.sql.builders.table
Methods in org.eclipse.dirigible.database.sql.builders.table with parameters of type DataType Modifier and Type Method Description TABLE_BUILDERAbstractTableBuilder. column(String name, DataType type)Column.TABLE_BUILDERAbstractTableBuilder. column(String name, DataType type, Boolean isPrimaryKey)Column.TABLE_BUILDERAbstractTableBuilder. column(String name, DataType type, Boolean isPrimaryKey, Boolean isNullable)Column.TABLE_BUILDERAbstractTableBuilder. column(String name, DataType type, Boolean isPrimaryKey, Boolean isNullable, Boolean isUnique)Column.TABLE_BUILDERAbstractTableBuilder. column(String name, DataType type, Boolean isPrimaryKey, Boolean isNullable, Boolean isUnique, Boolean isIdentity, Boolean isFuzzyIndexEnabled, String... args)Column.TABLE_BUILDERAbstractTableBuilder. column(String name, DataType type, Boolean isPrimaryKey, Boolean isNullable, Boolean isUnique, Boolean isFuzzyIndexEnabled, String... args)Column.TABLE_BUILDERAbstractTableBuilder. column(String name, DataType type, Boolean isPrimaryKey, Boolean isNullable, Boolean isUnique, String... args)Column. -
Uses of DataType in org.eclipse.dirigible.database.sql.builders.tableType
Methods in org.eclipse.dirigible.database.sql.builders.tableType with parameters of type DataType Modifier and Type Method Description CreateTableTypeBuilderCreateTableTypeBuilder. column(String name, DataType type)Column.CreateTableTypeBuilderCreateTableTypeBuilder. column(String name, DataType type, Boolean isPrimaryKey, Boolean isNullable, String args)Column.CreateTableTypeBuilderCreateTableTypeBuilder. column(String name, DataType type, String length)Column. -
Uses of DataType in org.eclipse.dirigible.database.sql.dialects
Methods in org.eclipse.dirigible.database.sql.dialects with parameters of type DataType Modifier and Type Method Description StringDefaultSqlDialect. getDataTypeName(DataType dataType)Gets the data type name.