Package | Description |
---|---|
org.hibernate.type |
A Hibernate Type is a strategy for mapping a
Java property type to a JDBC type or types.
|
Modifier and Type | Method and Description |
---|---|
protected TypeFactory.TypeScope |
EntityType.scope() |
Modifier and Type | Method and Description |
---|---|
static CustomType |
TypeFactory.custom(Class<UserType> typeClass,
Properties parameters,
TypeFactory.TypeScope scope)
Deprecated.
Only for use temporary use by
Hibernate |
static CompositeCustomType |
TypeFactory.customComponent(Class<CompositeUserType> typeClass,
Properties parameters,
TypeFactory.TypeScope scope)
Deprecated.
Only for use temporary use by
Hibernate |
Constructor and Description |
---|
ArrayType(TypeFactory.TypeScope typeScope,
String role,
String propertyRef,
Class elementClass,
boolean isEmbeddedInXML) |
BagType(TypeFactory.TypeScope typeScope,
String role,
String propertyRef,
boolean isEmbeddedInXML) |
CollectionType(TypeFactory.TypeScope typeScope,
String role,
String foreignKeyPropertyName,
boolean isEmbeddedInXML) |
ComponentType(TypeFactory.TypeScope typeScope,
ComponentMetamodel metamodel) |
CustomCollectionType(TypeFactory.TypeScope typeScope,
Class userTypeClass,
String role,
String foreignKeyPropertyName,
boolean isEmbeddedInXML) |
EmbeddedComponentType(TypeFactory.TypeScope typeScope,
ComponentMetamodel metamodel) |
EntityType(TypeFactory.TypeScope scope,
String entityName,
String uniqueKeyPropertyName,
boolean eager,
boolean isEmbeddedInXML,
boolean unwrapProxy)
Constructs the requested entity type mapping.
|
IdentifierBagType(TypeFactory.TypeScope typeScope,
String role,
String propertyRef,
boolean isEmbeddedInXML) |
ListType(TypeFactory.TypeScope typeScope,
String role,
String propertyRef,
boolean isEmbeddedInXML) |
ManyToOneType(TypeFactory.TypeScope scope,
String referencedEntityName)
Creates a many-to-one association type with the given referenced entity.
|
ManyToOneType(TypeFactory.TypeScope scope,
String referencedEntityName,
boolean lazy)
Creates a many-to-one association type with the given referenced entity and the
given laziness characteristic
|
ManyToOneType(TypeFactory.TypeScope scope,
String referencedEntityName,
String uniqueKeyPropertyName,
boolean lazy,
boolean unwrapProxy,
boolean isEmbeddedInXML,
boolean ignoreNotFound,
boolean isLogicalOneToOne) |
MapType(TypeFactory.TypeScope typeScope,
String role,
String propertyRef,
boolean isEmbeddedInXML) |
OneToOneType(TypeFactory.TypeScope scope,
String referencedEntityName,
ForeignKeyDirection foreignKeyType,
String uniqueKeyPropertyName,
boolean lazy,
boolean unwrapProxy,
boolean isEmbeddedInXML,
String entityName,
String propertyName) |
OrderedMapType(TypeFactory.TypeScope typeScope,
String role,
String propertyRef,
boolean isEmbeddedInXML)
Constructs a map type capable of creating ordered maps of the given
role.
|
OrderedSetType(TypeFactory.TypeScope typeScope,
String role,
String propertyRef,
boolean isEmbeddedInXML)
Constructs a set type capable of creating ordered sets of the given
role.
|
SetType(TypeFactory.TypeScope typeScope,
String role,
String propertyRef,
boolean isEmbeddedInXML) |
SortedMapType(TypeFactory.TypeScope typeScope,
String role,
String propertyRef,
Comparator comparator,
boolean isEmbeddedInXML) |
SortedSetType(TypeFactory.TypeScope typeScope,
String role,
String propertyRef,
Comparator comparator,
boolean isEmbeddedInXML) |
SpecialOneToOneType(TypeFactory.TypeScope scope,
String referencedEntityName,
ForeignKeyDirection foreignKeyType,
String uniqueKeyPropertyName,
boolean lazy,
boolean unwrapProxy,
String entityName,
String propertyName) |
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.