Uses of Interface
org.hibernate.type.descriptor.sql.DdlType
-
Packages that use DdlType Package Description org.hibernate.type.descriptor.sql.internal Includes several general-purpose implementations ofDdlType
.org.hibernate.type.descriptor.sql.spi Defines a registry forDdlType
s. -
-
Uses of DdlType in org.hibernate.type.descriptor.sql.internal
Classes in org.hibernate.type.descriptor.sql.internal that implement DdlType Modifier and Type Class Description class
ArrayDdlTypeImpl
class
BinaryFloatDdlType
class
CapacityDependentDdlType
Descriptor for a SQL type.class
DdlTypeImpl
Descriptor for a SQL type.class
NamedNativeEnumDdlTypeImpl
class
NamedNativeOrdinalEnumDdlTypeImpl
class
NativeEnumDdlTypeImpl
class
NativeOrdinalEnumDdlTypeImpl
class
Scale6IntervalSecondDdlType
-
Uses of DdlType in org.hibernate.type.descriptor.sql.spi
Methods in org.hibernate.type.descriptor.sql.spi that return DdlType Modifier and Type Method Description DdlType
DdlTypeRegistry. getDescriptor(int sqlTypeCode)
Returns the registeredDdlType
for the given SQL type code.Methods in org.hibernate.type.descriptor.sql.spi with parameters of type DdlType Modifier and Type Method Description void
DdlTypeRegistry. addDescriptor(int sqlTypeCode, DdlType ddlType)
Add a mapping from the given type code to the givenDdlType
.void
DdlTypeRegistry. addDescriptor(DdlType ddlType)
void
DdlTypeRegistry. addDescriptorIfAbsent(int sqlTypeCode, DdlType ddlType)
Add a mapping from the given type code to the givenDdlType
, if there is no mapping already present for the given type code.void
DdlTypeRegistry. addDescriptorIfAbsent(DdlType ddlType)
-