Uses of Class
org.hibernate.engine.jdbc.Size
-
Packages that use Size Package Description org.hibernate.boot.model.relational Some SPIs related to DDL generation and schema management.org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.dialect.temptable Support for temporary tables.org.hibernate.engine.jdbc Support for various aspects of JDBC interaction.org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.type A HibernateTypeis a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.descriptor.sql An API for working with abstract families of DDL types parameterized by varying length, precision, and scale.org.hibernate.type.descriptor.sql.internal Includes several general-purpose implementations ofDdlType.org.hibernate.type.descriptor.sql.spi Defines a registry forDdlTypes. -
-
Uses of Size in org.hibernate.boot.model.relational
Methods in org.hibernate.boot.model.relational with parameters of type Size Modifier and Type Method Description protected static intColumnOrderingStrategyStandard. physicalSizeInBytes(int sqlTypeCode, Size columnSize, Metadata metadata) -
Uses of Size in org.hibernate.dialect
Methods in org.hibernate.dialect that return Size Modifier and Type Method Description SizeDialect.SizeStrategy. resolveSize(JdbcType jdbcType, JavaType<?> javaType, Integer precision, Integer scale, Long length)SizeDialect.SizeStrategyImpl. resolveSize(JdbcType jdbcType, JavaType<?> javaType, Integer precision, Integer scale, Long length) -
Uses of Size in org.hibernate.dialect.temptable
Methods in org.hibernate.dialect.temptable that return Size Modifier and Type Method Description SizeTemporaryTableColumn. getSize()Constructors in org.hibernate.dialect.temptable with parameters of type Size Constructor Description TemporaryTableColumn(TemporaryTable containingTable, String columnName, JdbcMapping jdbcMapping, String sqlTypeName, Size size, boolean nullable)TemporaryTableColumn(TemporaryTable containingTable, String columnName, JdbcMapping jdbcMapping, String sqlTypeName, Size size, boolean nullable, boolean primaryKey)TemporaryTableSessionUidColumn(TemporaryTable containingTable, JdbcMapping jdbcMapping, String sqlTypeName, Size size) -
Uses of Size in org.hibernate.engine.jdbc
Methods in org.hibernate.engine.jdbc that return Size Modifier and Type Method Description static SizeSize. length(long length)static SizeSize. length(long length, Size.LobMultiplier lobMultiplier)static SizeSize. nil()static SizeSize. precision(int precision)static SizeSize. precision(int precision, int scale)SizeSize. setLength(Long length)SizeSize. setLobMultiplier(Size.LobMultiplier lobMultiplier)SizeSize. setPrecision(Integer precision)SizeSize. setScale(Integer scale)Methods in org.hibernate.engine.jdbc with parameters of type Size Modifier and Type Method Description voidSize. initialize(Size size) -
Uses of Size in org.hibernate.mapping
Methods in org.hibernate.mapping that return Size Modifier and Type Method Description SizeColumn. getColumnSize(Dialect dialect, Mapping mapping) -
Uses of Size in org.hibernate.type
Fields in org.hibernate.type declared as Size Modifier and Type Field Description protected static SizeAbstractType. LEGACY_DEFAULT_SIZEprotected static SizeAbstractType. LEGACY_DICTATED_SIZEMethods in org.hibernate.type that return Size Modifier and Type Method Description protected SizeSerializableToBlobType. getDictatedSize() -
Uses of Size in org.hibernate.type.descriptor.sql
Methods in org.hibernate.type.descriptor.sql with parameters of type Size Modifier and Type Method Description default StringDdlType. getTypeName(Size size)Return a type with length, precision, and scale specified by the given size object.default booleanDdlType. isLob(Size size) -
Uses of Size in org.hibernate.type.descriptor.sql.internal
Methods in org.hibernate.type.descriptor.sql.internal with parameters of type Size Modifier and Type Method Description booleanCapacityDependentDdlType. isLob(Size size)booleanDdlTypeImpl. isLob(Size size) -
Uses of Size in org.hibernate.type.descriptor.sql.spi
Methods in org.hibernate.type.descriptor.sql.spi with parameters of type Size Modifier and Type Method Description StringDdlTypeRegistry. getTypeName(int typeCode, Size size)Get the SQL type name for the specifiedJDBC type codeand size, filling in the placemarkers$l,$p, and$swith the length, precision, and scale determined by the given size object.
-