Package | Description |
---|---|
org.hibernate.engine.jdbc |
Support for various aspects of JDBC interaction
|
org.hibernate.persister.entity |
This package abstracts persistence mechanisms for
entities, and defines the Hibernate runtime
metamodel.
|
org.hibernate.type |
A Hibernate Type is a strategy for mapping a
Java property type to a JDBC type or types.
|
org.hibernate.usertype |
Interfaces for user-defined custom types.
|
Modifier and Type | Method and Description |
---|---|
static Size |
Size.length(long length) |
static Size |
Size.length(long length,
Size.LobMultiplier lobMultiplier) |
static Size |
Size.precision(int precision) |
static Size |
Size.precision(int precision,
int scale) |
Modifier and Type | Method and Description |
---|---|
void |
Size.initialize(Size size) |
Modifier and Type | Method and Description |
---|---|
Size[] |
DiscriminatorType.defaultSizes(Mapping mapping) |
Size[] |
DiscriminatorType.dictatedSizes(Mapping mapping) |
Modifier and Type | Field and Description |
---|---|
protected static Size |
AbstractType.LEGACY_DEFAULT_SIZE |
protected static Size |
AbstractType.LEGACY_DICTATED_SIZE |
Modifier and Type | Method and Description |
---|---|
Size[] |
Type.defaultSizes(Mapping mapping)
Defines the column sizes to use according to this type if the user did not explicitly say (and if no
Type.dictatedSizes(org.hibernate.engine.spi.Mapping) were given). |
Size[] |
SpecialOneToOneType.defaultSizes(Mapping mapping) |
Size[] |
OneToOneType.defaultSizes(Mapping mapping) |
Size[] |
MetaType.defaultSizes(Mapping mapping) |
Size[] |
ManyToOneType.defaultSizes(Mapping mapping) |
Size[] |
CustomType.defaultSizes(Mapping mapping) |
Size[] |
CompositeCustomType.defaultSizes(Mapping mapping) |
Size[] |
ComponentType.defaultSizes(Mapping mapping) |
Size[] |
CollectionType.defaultSizes(Mapping mapping) |
Size[] |
AnyType.defaultSizes(Mapping mapping) |
Size[] |
AbstractStandardBasicType.defaultSizes(Mapping mapping) |
Size[] |
Type.dictatedSizes(Mapping mapping)
Return the column sizes dictated by this type.
|
Size[] |
SpecialOneToOneType.dictatedSizes(Mapping mapping) |
Size[] |
OneToOneType.dictatedSizes(Mapping mapping) |
Size[] |
MetaType.dictatedSizes(Mapping mapping) |
Size[] |
ManyToOneType.dictatedSizes(Mapping mapping) |
Size[] |
CustomType.dictatedSizes(Mapping mapping) |
Size[] |
CompositeCustomType.dictatedSizes(Mapping mapping) |
Size[] |
ComponentType.dictatedSizes(Mapping mapping) |
Size[] |
CollectionType.dictatedSizes(Mapping mapping) |
Size[] |
AnyType.dictatedSizes(Mapping mapping) |
Size[] |
AbstractStandardBasicType.dictatedSizes(Mapping mapping) |
protected static Size |
AbstractStandardBasicType.getDefaultSize() |
protected Size |
AbstractStandardBasicType.getDictatedSize() |
Modifier and Type | Method and Description |
---|---|
Size[] |
Sized.defaultSizes()
Defines the column sizes to use according to this type if the user did not explicitly say (and if no
Sized.dictatedSizes() were given). |
Size[] |
Sized.dictatedSizes()
Return the column sizes dictated by this type.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.