Uses of Class
org.hibernate.engine.jdbc.Size
-
Packages that use Size Package Description org.hibernate.boot.model.relational org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.dialect.temptable org.hibernate.engine.jdbc Support for various aspects of JDBC interactionorg.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.descriptor.sql org.hibernate.type.descriptor.sql.spi -
-
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 int
ColumnOrderingStrategyStandard. 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 Size
Dialect.SizeStrategy. resolveSize(JdbcType jdbcType, JavaType<?> javaType, Integer precision, Integer scale, Long length)
Size
Dialect.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 Size
TemporaryTableColumn. 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 Size
Size. length(long length)
static Size
Size. length(long length, Size.LobMultiplier lobMultiplier)
static Size
Size. nil()
static Size
Size. precision(int precision)
static Size
Size. precision(int precision, int scale)
Size
Size. setLength(Long length)
Size
Size. setLobMultiplier(Size.LobMultiplier lobMultiplier)
Size
Size. setPrecision(Integer precision)
Size
Size. setScale(Integer scale)
Methods in org.hibernate.engine.jdbc with parameters of type Size Modifier and Type Method Description void
Size. initialize(Size size)
-
Uses of Size in org.hibernate.mapping
Methods in org.hibernate.mapping that return Size Modifier and Type Method Description Size
Column. 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 Size
AbstractType. LEGACY_DEFAULT_SIZE
protected static Size
AbstractType. LEGACY_DICTATED_SIZE
Methods in org.hibernate.type that return Size Modifier and Type Method Description protected Size
SerializableToBlobType. 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 String
DdlType. getTypeName(Size size)
Return a type with length, precision, and scale specified by the given size object. -
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 String
DdlTypeRegistry. getTypeName(int typeCode, Size size)
Get the SQL type name for the specifiedJDBC type code
and size, filling in the placemarkers$l
,$p
, and$s
with the length, precision, and scale determined by the given size object.
-