Package | Description |
---|---|
org.hibernate |
This package defines the central Hibernate APIs.
|
org.hibernate.boot |
This package contains the contracts that make up the Hibernate native
bootstrapping API (building a SessionFactory).
|
org.hibernate.boot.internal | |
org.hibernate.boot.spi | |
org.hibernate.cfg |
This package defines APIs for configuring Hibernate, and classes
for building the Hibernate configuration-time metamodel.
|
org.hibernate.cfg.annotations | |
org.hibernate.dialect |
This package abstracts the SQL dialect of the underlying database.
|
org.hibernate.dialect.identity | |
org.hibernate.engine.internal |
Support for many of the internal workings of Hibernate.
|
org.hibernate.engine.query.spi |
Defines support for query plans and stored metadata about queries
|
org.hibernate.engine.spi | |
org.hibernate.hql.internal | |
org.hibernate.hql.internal.ast |
An ANTLR-based parser for Hibernate Query Language.
|
org.hibernate.hql.internal.ast.util | |
org.hibernate.hql.internal.classic |
This package contains the Hibernate 2.x query parser which
is being end-of-lifed.
|
org.hibernate.hql.spi | |
org.hibernate.id |
This package contains internal implementation classes for the
main API interfaces.
|
org.hibernate.id.enhanced |
Enhanced/improved versions of table and sequence based identifier generators targeting portability and unified
configuration
|
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
org.hibernate.internal.util |
Internal utility classes.
|
org.hibernate.loader |
This package defines functionality for processing JDBC
result sets and returning complex graphs of persistent
objects.
|
org.hibernate.loader.collection |
This package defines collection initializers
|
org.hibernate.loader.collection.plan | |
org.hibernate.loader.criteria |
This package defines the criteria query compiler and loader
|
org.hibernate.loader.entity |
This package defines entity loaders
|
org.hibernate.mapping |
This package defines the Hibernate configuration-time metamodel.
|
org.hibernate.metamodel.internal | |
org.hibernate.persister.collection |
This package abstracts the persistence mechanism for collections.
|
org.hibernate.persister.entity |
This package abstracts persistence mechanisms for
entities, and defines the Hibernate runtime
metamodel.
|
org.hibernate.procedure | |
org.hibernate.query | |
org.hibernate.query.internal | |
org.hibernate.query.spi | |
org.hibernate.type |
A Hibernate Type is a strategy for mapping a
Java property type to a JDBC type or types.
|
Modifier and Type | Class and Description |
---|---|
class |
AnnotationException
Annotation related exception.
|
class |
DuplicateMappingException
Raised whenever a duplicate for a certain type occurs.
|
class |
InvalidMappingException
Thrown when a mapping is found to be invalid.
|
class |
MappingNotFoundException
Deprecated.
Use
MappingNotFoundException instead. |
class |
PropertyNotFoundException
Indicates that an expected getter or setter method could not be
found on a class.
|
class |
UnknownEntityTypeException
Indicates an attempt was made to refer to an unknown entity name/class.
|
Modifier and Type | Method and Description |
---|---|
SynchronizeableQuery<T> |
SynchronizeableQuery.addSynchronizedEntityClass(java.lang.Class entityClass)
Adds an entity for (a) auto-flush checking and (b) query result cache invalidation checking.
|
SQLQuery<T> |
SQLQuery.addSynchronizedEntityClass(java.lang.Class entityClass)
Deprecated.
|
SynchronizeableQuery<T> |
SynchronizeableQuery.addSynchronizedEntityName(java.lang.String entityName)
Adds an entity name for (a) auto-flush checking and (b) query result cache invalidation checking.
|
SQLQuery<T> |
SQLQuery.addSynchronizedEntityName(java.lang.String entityName)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
MappingException
Indicates a problem parsing a mapping document.
|
class |
UnsupportedOrmXsdVersionException |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
InFlightMetadataCollectorImpl.getIdentifierPropertyName(java.lang.String entityName) |
java.lang.String |
MetadataImpl.getIdentifierPropertyName(java.lang.String entityName) |
Type |
InFlightMetadataCollectorImpl.getIdentifierType(java.lang.String entityName) |
Type |
MetadataImpl.getIdentifierType(java.lang.String entityName) |
java.lang.String |
InFlightMetadataCollectorImpl.getLogicalColumnName(Table table,
Identifier physicalName) |
java.lang.String |
InFlightMetadataCollectorImpl.getLogicalColumnName(Table table,
java.lang.String physicalName) |
java.lang.String |
InFlightMetadataCollectorImpl.getPhysicalColumnName(Table table,
Identifier logicalName) |
java.lang.String |
InFlightMetadataCollectorImpl.getPhysicalColumnName(Table table,
java.lang.String logicalName) |
Type |
InFlightMetadataCollectorImpl.getReferencedPropertyType(java.lang.String entityName,
java.lang.String propertyName) |
Type |
MetadataImpl.getReferencedPropertyType(java.lang.String entityName,
java.lang.String propertyName) |
protected void |
InFlightMetadataCollectorImpl.secondPassCompileForeignKeys(Table table,
java.util.Set<ForeignKey> done,
MetadataBuildingContext buildingContext) |
void |
InFlightMetadataCollectorImpl.validate() |
void |
MetadataImpl.validate() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
AbstractDelegatingMetadata.getIdentifierPropertyName(java.lang.String className) |
Type |
AbstractDelegatingMetadata.getIdentifierType(java.lang.String className) |
java.lang.String |
InFlightMetadataCollector.getPhysicalColumnName(Table table,
Identifier logicalName) |
java.lang.String |
InFlightMetadataCollector.getPhysicalColumnName(Table table,
java.lang.String logicalName) |
Type |
AbstractDelegatingMetadata.getReferencedPropertyType(java.lang.String className,
java.lang.String propertyName) |
void |
AbstractDelegatingMetadata.validate() |
void |
MetadataImplementor.validate() |
Modifier and Type | Class and Description |
---|---|
class |
CannotForceNonNullableException
Indicates an internal attempt to mark a column as non-nullable (because its part
of a PK, etc) but we cannot force that column to be non-nullable.
|
class |
NotYetImplementedException
Mapping not yet implemented
|
class |
RecoverableException
Deprecated.
Was only ever referenced in a single place, in an extremely dubious way.
|
Modifier and Type | Method and Description |
---|---|
Configuration |
Configuration.addCacheableFile(java.io.File xmlFile)
Add a cached mapping file.
|
Configuration |
Configuration.addCacheableFile(java.lang.String xmlFile)
Add a cacheable mapping file.
|
Configuration |
Configuration.addClass(java.lang.Class persistentClass)
Read a mapping as an application resource using the convention that a class
named foo.bar.Foo is mapped by a file foo/bar/Foo.hbm.xml
which can be resolved as a classpath resource.
|
Configuration |
Configuration.addDirectory(java.io.File dir)
Read all mapping documents from a directory tree.
|
Configuration |
Configuration.addDocument(org.w3c.dom.Document doc)
Deprecated.
Use addURL, addResource, addFile, etc. instead
|
Configuration |
Configuration.addFile(java.io.File xmlFile)
Read mappings from a particular XML file
|
Configuration |
Configuration.addFile(java.lang.String xmlFile)
Read mappings from a particular XML file
|
Configuration |
Configuration.addInputStream(java.io.InputStream xmlInputStream)
Read mappings from an
InputStream . |
Configuration |
Configuration.addJar(java.io.File jar)
Read all mappings from a jar file
Assumes that any file named *.hbm.xml is a mapping document.
|
Configuration |
Configuration.addPackage(java.lang.String packageName)
Read package-level metadata.
|
Configuration |
Configuration.addResource(java.lang.String resourceName)
Read mappings as a application resourceName (i.e.
|
Configuration |
Configuration.addResource(java.lang.String resourceName,
java.lang.ClassLoader classLoader)
Deprecated.
This form (accepting a ClassLoader) is no longer supported. Instead, add the ClassLoader
to the ClassLoaderService on the ServiceRegistry associated with this Configuration
|
Configuration |
Configuration.addURL(java.net.URL url)
Read mappings from a URL
|
Configuration |
Configuration.addXML(java.lang.String xml)
Deprecated.
No longer supported
|
static void |
AnnotationBinder.bindClass(org.hibernate.annotations.common.reflection.XClass clazzToProcess,
java.util.Map<org.hibernate.annotations.common.reflection.XClass,InheritanceState> inheritanceStatePerClass,
MetadataBuildingContext context)
Bind a class having JSR175 annotations.
|
void |
CollectionSecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
IdGeneratorResolverSecondPass.doSecondPass(java.util.Map idGeneratorDefinitionMap) |
void |
SetSimpleValueTypeSecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
SecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
CreateKeySecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
OneToOneSecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
SecondaryTableSecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
JoinedSubclassFkSecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
PkDrivenByDefaultMapsIdSecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
VerifyFetchProfileReferenceSecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
ToOneFkSecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
IndexOrUniqueKeySecondPass.doSecondPass(java.util.Map persistentClasses) |
void |
CopyIdentifierComponentSecondPass.doSecondPass(java.util.Map persistentClasses) |
org.hibernate.annotations.common.reflection.XClass |
WrappedInferredData.getClassOrElement() |
org.hibernate.annotations.common.reflection.XClass |
PropertyData.getClassOrElement()
Returns the returned class itself or the element type if an array
|
org.hibernate.annotations.common.reflection.XClass |
PropertyInferredData.getClassOrElement() |
org.hibernate.annotations.common.reflection.XClass |
PropertyPreloadedData.getClassOrElement() |
java.lang.String |
WrappedInferredData.getClassOrElementName() |
java.lang.String |
PropertyData.getClassOrElementName()
Returns the returned class name itself or the element type if an array
|
java.lang.String |
PropertyInferredData.getClassOrElementName() |
java.lang.String |
PropertyPreloadedData.getClassOrElementName() |
AccessType |
PropertyInferredData.getDefaultAccess() |
AccessType |
PropertyPreloadedData.getDefaultAccess() |
org.hibernate.annotations.common.reflection.XClass |
WrappedInferredData.getPropertyClass() |
org.hibernate.annotations.common.reflection.XClass |
PropertyData.getPropertyClass()
Return the class itself
|
org.hibernate.annotations.common.reflection.XClass |
PropertyInferredData.getPropertyClass() |
org.hibernate.annotations.common.reflection.XClass |
PropertyPreloadedData.getPropertyClass() |
java.lang.String |
WrappedInferredData.getPropertyName() |
java.lang.String |
PropertyData.getPropertyName() |
java.lang.String |
PropertyInferredData.getPropertyName() |
java.lang.String |
PropertyPreloadedData.getPropertyName() |
java.lang.String |
WrappedInferredData.getTypeName() |
java.lang.String |
PropertyData.getTypeName()
Returns the returned class name itself
|
java.lang.String |
PropertyInferredData.getTypeName() |
java.lang.String |
PropertyPreloadedData.getTypeName() |
abstract void |
CollectionSecondPass.secondPass(java.util.Map persistentClasses,
java.util.Map inheritedMetas) |
Modifier and Type | Method and Description |
---|---|
protected void |
CollectionBinder.bindManyToManySecondPass(Collection collValue,
java.util.Map persistentClasses,
Ejb3JoinColumn[] joinColumns,
Ejb3JoinColumn[] inverseJoinColumns,
Ejb3Column[] elementColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
boolean cascadeDeleteEnabled,
TableBinder associationTableBinder,
org.hibernate.annotations.common.reflection.XProperty property,
PropertyHolder parentPropertyHolder,
MetadataBuildingContext buildingContext) |
void |
ResultsetMappingSecondPass.doSecondPass(java.util.Map persistentClasses) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
TypeNames.get(int typeCode)
get default type name for specified type
|
java.lang.String |
TypeNames.get(int typeCode,
long size,
int precision,
int scale)
get type name for specified type and size
|
protected java.lang.String |
Dialect.getCreateSequenceString(java.lang.String sequenceName)
Typically dialects which support sequences can create a sequence
with a single command.
|
protected java.lang.String |
HSQLDialect.getCreateSequenceString(java.lang.String sequenceName,
int initialValue,
int incrementSize)
Because of the overridden
HSQLDialect.getCreateSequenceString(String) , we must also override
HSQLDialect.getCreateSequenceString(String, int, int) to prevent 2 instances of "start with". |
protected java.lang.String |
Dialect.getCreateSequenceString(java.lang.String sequenceName,
int initialValue,
int incrementSize)
Overloaded form of
Dialect.getCreateSequenceString(String) , additionally
taking the initial value and increment size to be applied to the sequence
definition. |
protected java.lang.String |
AbstractHANADialect.getCreateSequenceString(java.lang.String sequenceName,
int initialValue,
int incrementSize) |
java.lang.String[] |
Dialect.getCreateSequenceStrings(java.lang.String sequenceName)
Deprecated.
|
java.lang.String[] |
Dialect.getCreateSequenceStrings(java.lang.String sequenceName,
int initialValue,
int incrementSize)
An optional multi-line form for databases which
Dialect.supportsPooledSequences() . |
protected java.lang.String |
Dialect.getDropSequenceString(java.lang.String sequenceName)
Typically dialects which support sequences can drop a sequence
with a single command.
|
java.lang.String[] |
Dialect.getDropSequenceStrings(java.lang.String sequenceName)
The multiline script used to drop a sequence.
|
java.lang.String |
DB2Dialect.getSelectSequenceNextValString(java.lang.String sequenceName) |
java.lang.String |
Dialect.getSelectSequenceNextValString(java.lang.String sequenceName)
Generate the select expression fragment that will retrieve the next
value of a sequence as part of another (typically DML) statement.
|
java.lang.String |
Dialect.getSequenceNextValString(java.lang.String sequenceName)
Generate the appropriate select statement to to retrieve the next value
of a sequence.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
Chache71IdentityColumnSupport.getIdentityColumnString(int type) |
java.lang.String |
InformixIdentityColumnSupport.getIdentityColumnString(int type) |
java.lang.String |
IdentityColumnSupport.getIdentityColumnString(int type)
The syntax used during DDL to define a column as being an IDENTITY of
a particular type.
|
java.lang.String |
IdentityColumnSupportImpl.getIdentityColumnString(int type) |
java.lang.String |
AbstractTransactSQLIdentityColumnSupport.getIdentityColumnString(int type) |
java.lang.String |
HANAIdentityColumnSupport.getIdentitySelectString(java.lang.String table,
java.lang.String column,
int type) |
java.lang.String |
InformixIdentityColumnSupport.getIdentitySelectString(java.lang.String table,
java.lang.String column,
int type) |
java.lang.String |
IdentityColumnSupport.getIdentitySelectString(java.lang.String table,
java.lang.String column,
int type)
Get the select command to use to retrieve the last generated IDENTITY
value for a particular table
|
java.lang.String |
IdentityColumnSupportImpl.getIdentitySelectString(java.lang.String table,
java.lang.String column,
int type) |
java.lang.String |
AbstractTransactSQLIdentityColumnSupport.getIdentitySelectString(java.lang.String table,
java.lang.String column,
int type) |
Modifier and Type | Method and Description |
---|---|
JoinSequence |
JoinSequence.addJoin(AssociationType associationType,
java.lang.String alias,
JoinType joinType,
java.lang.String[] referencingKey)
Add a join to this sequence
|
JoinSequence |
JoinSequence.addJoin(AssociationType associationType,
java.lang.String alias,
JoinType joinType,
java.lang.String[][] referencingKeys)
Add a join to this sequence
|
java.lang.Object |
StatefulPersistenceContext.getCollectionOwner(java.io.Serializable key,
CollectionPersister collectionPersister) |
boolean |
StatefulPersistenceContext.reassociateIfUninitializedProxy(java.lang.Object value) |
void |
StatefulPersistenceContext.reassociateProxy(java.lang.Object value,
java.io.Serializable id) |
JoinFragment |
JoinSequence.toJoinFragment()
Generate a JoinFragment
|
JoinFragment |
JoinSequence.toJoinFragment(java.util.Map enabledFilters,
boolean includeAllSubclassJoins)
Generate a JoinFragment
|
JoinFragment |
JoinSequence.toJoinFragment(java.util.Map enabledFilters,
boolean includeAllSubclassJoins,
boolean renderSubclassJoins,
java.lang.String withClauseFragment) |
JoinFragment |
JoinSequence.toJoinFragment(java.util.Map enabledFilters,
boolean includeAllSubclassJoins,
java.lang.String withClauseFragment)
Generate a JoinFragment
|
Modifier and Type | Method and Description |
---|---|
FilterQueryPlan |
QueryPlanCache.getFilterQueryPlan(java.lang.String filterString,
java.lang.String collectionRole,
boolean shallow,
java.util.Map<java.lang.String,Filter> enabledFilters)
Get the query plan for the given collection HQL filter fragment, creating it and caching it if not already cached
|
HQLQueryPlan |
QueryPlanCache.getHQLQueryPlan(java.lang.String queryString,
boolean shallow,
java.util.Map<java.lang.String,Filter> enabledFilters)
Get the query plan for the given HQL query, creating it and caching it if not already cached
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
PersistenceContext.getCollectionOwner(java.io.Serializable key,
CollectionPersister collectionPersister)
Get the entity that owns this persistent collection
|
default CollectionPersister |
SessionFactoryImplementor.getCollectionPersister(java.lang.String role)
Deprecated.
(since 5.2) Use
MetamodelImplementor.collectionPersister(String) instead. |
CollectionPersister |
SessionFactoryDelegatingImpl.getCollectionPersister(java.lang.String role) |
default EntityPersister |
SessionFactoryImplementor.getEntityPersister(java.lang.String entityName)
Deprecated.
(since 5.2) Use
MetamodelImplementor.entityPersister(Class) instead. |
EntityPersister |
SessionFactoryDelegatingImpl.getEntityPersister(java.lang.String entityName) |
java.lang.String |
SessionFactoryDelegatingImpl.getIdentifierPropertyName(java.lang.String className) |
java.lang.String |
Mapping.getIdentifierPropertyName(java.lang.String className) |
Type |
SessionFactoryDelegatingImpl.getIdentifierType(java.lang.String className) |
Type |
Mapping.getIdentifierType(java.lang.String className) |
java.lang.String[] |
SessionFactoryDelegatingImpl.getImplementors(java.lang.String className) |
Type |
SessionFactoryDelegatingImpl.getReferencedPropertyType(java.lang.String className,
java.lang.String propertyName) |
Type |
Mapping.getReferencedPropertyType(java.lang.String className,
java.lang.String propertyName) |
java.lang.Boolean |
VersionValue.isUnsaved(java.lang.Object version) |
boolean |
PersistenceContext.reassociateIfUninitializedProxy(java.lang.Object value)
Takes the given object and, if it represents a proxy, reassociates it with this event source.
|
void |
PersistenceContext.reassociateProxy(java.lang.Object value,
java.io.Serializable id)
If a deleted entity instance is re-saved, and it has a proxy, we need to
reset the identifier of the proxy
|
Constructor and Description |
---|
CollectionEntry(PersistentCollection collection,
SessionFactoryImplementor factory)
For initialized detached collections
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String[] |
QuerySplitter.concreteQueries(java.lang.String query,
SessionFactoryImplementor factory)
Handle Hibernate "implicit" polymorphism, by translating the query string into
several "concrete" queries against mapped classes.
|
static java.lang.String[][] |
NameGenerator.generateColumnNames(Type[] types,
SessionFactoryImplementor f) |
Modifier and Type | Method and Description |
---|---|
void |
QueryTranslatorImpl.compile(java.util.Map replacements,
boolean shallow)
Compile a "normal" query.
|
void |
QueryTranslatorImpl.compile(java.lang.String collectionRole,
java.util.Map replacements,
boolean shallow)
Compile a filter.
|
Modifier and Type | Method and Description |
---|---|
EntityPersister |
SessionFactoryHelper.findEntityPersisterByName(java.lang.String name)
Locate the persister by class or entity name.
|
Modifier and Type | Method and Description |
---|---|
void |
QueryTranslatorImpl.compile(java.util.Map replacements,
boolean scalar)
Compile a "normal" query.
|
void |
QueryTranslatorImpl.compile(java.lang.String collectionRole,
java.util.Map replacements,
boolean scalar)
Compile a filter.
|
Modifier and Type | Method and Description |
---|---|
void |
QueryTranslator.compile(java.util.Map replacements,
boolean shallow)
Compile a "normal" query.
|
void |
FilterTranslator.compile(java.lang.String collectionRole,
java.util.Map replacements,
boolean shallow)
Compile a filter.
|
Modifier and Type | Method and Description |
---|---|
void |
SelectGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry) |
void |
Configurable.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry)
Configure this instance, given the value of parameters
specified by the user as <param> elements.
|
void |
IncrementGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry) |
void |
Assigned.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry) |
void |
SequenceGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry)
Deprecated.
|
void |
SequenceIdentityGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry)
Deprecated.
|
void |
SequenceHiLoGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry)
Deprecated.
|
void |
UUIDHexGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry) |
void |
ForeignGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry) |
void |
UUIDGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry) |
void |
MultipleHiLoPerTableGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry)
Deprecated.
|
void |
ExportableColumn.ValueImpl.createForeignKey() |
Type |
ExportableColumn.ValueImpl.getType() |
boolean |
ExportableColumn.ValueImpl.isValid(Mapping mapping) |
void |
ExportableColumn.ValueImpl.setTypeUsingReflection(java.lang.String className,
java.lang.String propertyName) |
Modifier and Type | Method and Description |
---|---|
void |
SequenceStyleGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry) |
void |
TableGenerator.configure(Type type,
java.util.Properties params,
ServiceRegistry serviceRegistry) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
SessionFactoryImpl.getIdentifierPropertyName(java.lang.String className) |
Type |
SessionFactoryImpl.getIdentifierType(java.lang.String className) |
Type |
SessionFactoryImpl.getReferencedPropertyType(java.lang.String className,
java.lang.String propertyName) |
Modifier and Type | Method and Description |
---|---|
static java.lang.Class |
ReflectHelper.reflectedPropertyClass(java.lang.Class clazz,
java.lang.String name)
Attempt to resolve the specified property type through reflection.
|
static java.lang.Class |
ReflectHelper.reflectedPropertyClass(java.lang.String className,
java.lang.String name,
ClassLoaderService classLoaderService)
Attempt to resolve the specified property type through reflection.
|
Modifier and Type | Method and Description |
---|---|
void |
OuterJoinableAssociation.addJoins(JoinFragment outerjoin) |
void |
OuterJoinableAssociation.addManyToManyJoin(JoinFragment outerjoin,
QueryableCollection collection) |
protected static int |
JoinWalker.countCollectionPersisters(java.util.List associations)
Count the number of instances of Joinable which are actually
also instances of PersistentCollection which are being fetched
by outer join
|
protected static int |
JoinWalker.countEntityPersisters(java.util.List associations)
Count the number of instances of Joinable which are actually
also instances of Loadable, or are one-to-many associations
|
protected JoinType |
JoinWalker.getJoinType(AssociationType associationType,
FetchMode config,
PropertyPath path,
java.lang.String lhsTable,
java.lang.String[] lhsColumns,
boolean nullable,
int currentDepth,
CascadeStyle cascadeStyle)
Determine the appropriate associationType of join (if any) to use to fetch the
given association.
|
protected JoinType |
JoinWalker.getJoinType(OuterJoinLoadable persister,
PropertyPath path,
int propertyNumber,
AssociationType associationType,
FetchMode metadataFetchMode,
CascadeStyle metadataCascadeStyle,
java.lang.String lhsTable,
java.lang.String[] lhsColumns,
boolean nullable,
int currentDepth)
Determine the appropriate type of join (if any) to use to fetch the
given association.
|
protected java.lang.String |
AbstractEntityJoinWalker.getWhereFragment() |
protected void |
AbstractEntityJoinWalker.initAll(java.lang.String whereString,
java.lang.String orderByString,
LockOptions lockOptions) |
protected void |
AbstractEntityJoinWalker.initAll(java.lang.String whereString,
java.lang.String orderByString,
LockOptions lockOptions,
JoinWalker.AssociationInitCallback callback) |
protected void |
JoinWalker.initPersisters(java.util.List associations,
LockMode lockMode) |
protected void |
JoinWalker.initPersisters(java.util.List associations,
LockOptions lockOptions) |
protected void |
JoinWalker.initPersisters(java.util.List associations,
LockOptions lockOptions,
JoinWalker.AssociationInitCallback callback) |
protected void |
AbstractEntityJoinWalker.initProjection(java.lang.String projectionString,
java.lang.String whereString,
java.lang.String orderByString,
java.lang.String groupByString,
LockOptions lockOptions) |
protected boolean |
JoinWalker.isJoinedFetchEnabledInMapping(FetchMode config,
AssociationType type)
Does the mapping, and Hibernate default semantics, specify that
this association should be fetched by outer joining
|
protected JoinFragment |
JoinWalker.mergeOuterJoins(java.util.List associations)
Generate a sequence of LEFT OUTER JOIN clauses for the given associations.
|
protected static java.lang.String |
JoinWalker.orderBy(java.util.List associations)
Get the order by string required for collection fetching
|
protected java.lang.String |
JoinWalker.selectString(java.util.List associations)
Generate a select list of columns containing all properties of the entity classes
|
void |
OuterJoinableAssociation.validateJoin(java.lang.String path) |
protected void |
JoinWalker.walkCollectionTree(QueryableCollection persister,
java.lang.String alias)
For a collection role, return a list of associations to be fetched by outerjoin
|
protected void |
JoinWalker.walkEntityTree(OuterJoinLoadable persister,
java.lang.String alias)
Walk the association tree for an entity, adding associations which should
be join fetched to the
JoinWalker.associations inst var. |
Constructor and Description |
---|
OuterJoinableAssociation(PropertyPath propertyPath,
AssociationType joinableType,
java.lang.String lhsAlias,
java.lang.String[] lhsColumns,
java.lang.String rhsAlias,
JoinType joinType,
java.lang.String withClause,
boolean hasRestriction,
SessionFactoryImplementor factory,
java.util.Map enabledFilters) |
Modifier and Type | Method and Description |
---|---|
protected CollectionInitializer |
LegacyBatchingCollectionInitializerBuilder.createRealBatchingCollectionInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
CollectionInitializer |
PaddedBatchingCollectionInitializerBuilder.createRealBatchingCollectionInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
protected CollectionInitializer |
LegacyBatchingCollectionInitializerBuilder.createRealBatchingOneToManyInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
CollectionInitializer |
PaddedBatchingCollectionInitializerBuilder.createRealBatchingOneToManyInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
protected JoinType |
BasicCollectionJoinWalker.getJoinType(OuterJoinLoadable persister,
PropertyPath path,
int propertyNumber,
AssociationType associationType,
FetchMode metadataFetchMode,
CascadeStyle metadataCascadeStyle,
java.lang.String lhsTable,
java.lang.String[] lhsColumns,
boolean nullable,
int currentDepth) |
Constructor and Description |
---|
BasicCollectionJoinWalker(QueryableCollection collectionPersister,
int batchSize,
java.lang.String subquery,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
BasicCollectionLoader(QueryableCollection collectionPersister,
int batchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
BasicCollectionLoader(QueryableCollection collectionPersister,
int batchSize,
java.lang.String subquery,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
BasicCollectionLoader(QueryableCollection collectionPersister,
SessionFactoryImplementor session,
LoadQueryInfluencers loadQueryInfluencers) |
OneToManyJoinWalker(QueryableCollection oneToManyPersister,
int batchSize,
java.lang.String subquery,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
OneToManyLoader(QueryableCollection oneToManyPersister,
int batchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
OneToManyLoader(QueryableCollection oneToManyPersister,
int batchSize,
java.lang.String subquery,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
OneToManyLoader(QueryableCollection oneToManyPersister,
SessionFactoryImplementor session,
LoadQueryInfluencers loadQueryInfluencers) |
SubselectCollectionLoader(QueryableCollection persister,
java.lang.String subquery,
java.util.Collection entityKeys,
QueryParameters queryParameters,
java.util.Map<java.lang.String,int[]> namedParameterLocMap,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
SubselectOneToManyLoader(QueryableCollection persister,
java.lang.String subquery,
java.util.Collection entityKeys,
QueryParameters queryParameters,
java.util.Map<java.lang.String,int[]> namedParameterLocMap,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
Modifier and Type | Method and Description |
---|---|
CollectionInitializer |
LegacyBatchingCollectionInitializerBuilder.createRealBatchingCollectionInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
CollectionInitializer |
LegacyBatchingCollectionInitializerBuilder.createRealBatchingOneToManyInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
Modifier and Type | Method and Description |
---|---|
protected JoinType |
CriteriaJoinWalker.getJoinType(AssociationType associationType,
FetchMode config,
PropertyPath path,
java.lang.String lhsTable,
java.lang.String[] lhsColumns,
boolean nullable,
int currentDepth,
CascadeStyle cascadeStyle) |
protected JoinType |
CriteriaJoinWalker.getJoinType(OuterJoinLoadable persister,
PropertyPath path,
int propertyNumber,
AssociationType associationType,
FetchMode metadataFetchMode,
CascadeStyle metadataCascadeStyle,
java.lang.String lhsTable,
java.lang.String[] lhsColumns,
boolean nullable,
int currentDepth) |
protected java.lang.String |
CriteriaJoinWalker.getWhereFragment()
Use the discriminator, to narrow the select to instances
of the queried subclass, also applying any filters.
|
Modifier and Type | Method and Description |
---|---|
protected JoinType |
EntityJoinWalker.getJoinType(OuterJoinLoadable persister,
PropertyPath path,
int propertyNumber,
AssociationType associationType,
FetchMode metadataFetchMode,
CascadeStyle metadataCascadeStyle,
java.lang.String lhsTable,
java.lang.String[] lhsColumns,
boolean nullable,
int currentDepth) |
Modifier and Type | Method and Description |
---|---|
void |
RootClass.addSubclass(Subclass subclass) |
void |
PersistentClass.addSubclass(Subclass subclass) |
protected void |
PersistentClass.checkColumnDuplication(java.util.Set distinctColumns,
java.util.Iterator columns) |
protected void |
PersistentClass.checkPropertyColumnDuplication(java.util.Set distinctColumns,
java.util.Iterator properties) |
void |
Collection.createAllKeys() |
void |
Map.createAllKeys() |
void |
OneToOne.createForeignKey() |
void |
Value.createForeignKey() |
void |
ManyToOne.createForeignKey() |
void |
SimpleValue.createForeignKey() |
abstract void |
ToOne.createForeignKey() |
IdentifierGenerator |
Component.createIdentifierGenerator(IdentifierGeneratorFactory identifierGeneratorFactory,
Dialect dialect,
java.lang.String defaultCatalog,
java.lang.String defaultSchema,
RootClass rootClass) |
IdentifierGenerator |
SimpleValue.createIdentifierGenerator(IdentifierGeneratorFactory identifierGeneratorFactory,
Dialect dialect,
java.lang.String defaultCatalog,
java.lang.String defaultSchema,
RootClass rootClass) |
IdentifierGenerator |
KeyValue.createIdentifierGenerator(IdentifierGeneratorFactory identifierGeneratorFactory,
Dialect dialect,
java.lang.String defaultCatalog,
java.lang.String defaultSchema,
RootClass rootClass) |
CascadeStyle |
Property.getCascadeStyle() |
java.lang.Class |
Component.getComponentClass() |
CollectionType |
List.getDefaultCollectionType() |
CollectionType |
Array.getDefaultCollectionType() |
abstract CollectionType |
Collection.getDefaultCollectionType() |
java.lang.Class |
Array.getElementClass() |
Getter |
Property.getGetter(java.lang.Class clazz) |
java.lang.Class |
PersistentClass.getMappedClass() |
Property |
Component.getProperty(java.lang.String propertyName) |
Property |
PersistentClass.getProperty(java.lang.String propertyName) |
PropertyAccessStrategy |
Backref.getPropertyAccessStrategy(java.lang.Class clazz) |
PropertyAccessStrategy |
IndexBackref.getPropertyAccessStrategy(java.lang.Class clazz) |
PropertyAccessStrategy |
Property.getPropertyAccessStrategy(java.lang.Class clazz) |
Property |
PersistentClass.getRecursiveProperty(java.lang.String propertyPath) |
Property |
PersistentClass.getReferencedProperty(java.lang.String propertyPath)
Given a property path, locate the appropriate referenceable property reference.
|
Setter |
Property.getSetter(java.lang.Class clazz) |
int |
Column.getSqlTypeCode(Mapping mapping) |
Type |
DependantValue.getType() |
Type |
OneToOne.getType() |
Type |
Any.getType() |
Type |
Component.getType() |
Type |
Value.getType() |
Type |
ManyToOne.getType() |
Type |
SimpleValue.getType() |
Type |
Property.getType() |
abstract Type |
ToOne.getType() |
Type |
Collection.getType() |
boolean |
OneToMany.isValid(Mapping mapping) |
boolean |
Value.isValid(Mapping mapping) |
boolean |
SimpleValue.isValid(Mapping mapping) |
boolean |
Property.isValid(Mapping mapping) |
boolean |
ToOne.isValid(Mapping mapping) |
boolean |
Collection.isValid(Mapping mapping) |
void |
ForeignKey.setReferencedTable(Table referencedTable) |
void |
Any.setTypeUsingReflection(java.lang.String className,
java.lang.String propertyName) |
void |
Component.setTypeUsingReflection(java.lang.String className,
java.lang.String propertyName) |
void |
Value.setTypeUsingReflection(java.lang.String className,
java.lang.String propertyName) |
void |
SimpleValue.setTypeUsingReflection(java.lang.String className,
java.lang.String propertyName) |
void |
ToOne.setTypeUsingReflection(java.lang.String className,
java.lang.String propertyName) |
void |
IdentifierCollection.validate(Mapping mapping) |
void |
JoinedSubclass.validate(Mapping mapping) |
void |
UnionSubclass.validate(Mapping mapping) |
void |
RootClass.validate(Mapping mapping) |
void |
PersistentClass.validate(Mapping mapping) |
void |
Set.validate(Mapping mapping) |
void |
Collection.validate(Mapping mapping) |
void |
SingleTableSubclass.validate(Mapping mapping) |
void |
IndexedCollection.validate(Mapping mapping) |
Constructor and Description |
---|
Component(MetadataImplementor metadata,
Collection collection) |
Component(MetadataImplementor metadata,
Component component) |
Component(MetadataImplementor metadata,
Join join) |
Component(MetadataImplementor metadata,
PersistentClass owner) |
Component(MetadataImplementor metadata,
Table table,
PersistentClass owner) |
OneToMany(MetadataImplementor metadata,
PersistentClass owner) |
OneToOne(MetadataImplementor metadata,
Table table,
PersistentClass owner) |
Modifier and Type | Method and Description |
---|---|
EntityPersister |
MetamodelImpl.entityPersister(java.lang.String entityName) |
java.lang.String[] |
MetamodelImpl.getImplementors(java.lang.String className)
Given the name of an entity class, determine all the class and interface names by which it can be
referenced in an HQL query.
|
Modifier and Type | Method and Description |
---|---|
protected CollectionInitializer |
OneToManyPersister.createCollectionInitializer(LoadQueryInfluencers loadQueryInfluencers)
Create the OneToManyLoader
|
protected abstract CollectionInitializer |
AbstractCollectionPersister.createCollectionInitializer(LoadQueryInfluencers loadQueryInfluencers) |
protected CollectionInitializer |
BasicCollectionPersister.createCollectionInitializer(LoadQueryInfluencers loadQueryInfluencers)
Create the CollectionLoader
|
java.lang.String |
OneToManyPersister.filterFragment(java.lang.String alias) |
protected java.lang.String |
AbstractCollectionPersister.filterFragment(java.lang.String alias) |
java.lang.String |
AbstractCollectionPersister.filterFragment(java.lang.String alias,
java.util.Map enabledFilters) |
protected java.lang.String |
OneToManyPersister.filterFragment(java.lang.String alias,
java.util.Set<java.lang.String> treatAsDeclarations) |
protected java.lang.String |
AbstractCollectionPersister.filterFragment(java.lang.String alias,
java.util.Set<java.lang.String> treatAsDeclarations) |
java.lang.String |
AbstractCollectionPersister.oneToManyFilterFragment(java.lang.String alias) |
void |
AbstractCollectionPersister.postInstantiate() |
void |
CollectionPersister.postInstantiate() |
Constructor and Description |
---|
AbstractCollectionPersister(Collection collectionBinding,
CollectionRegionAccessStrategy cacheAccessStrategy,
PersisterCreationContext creationContext) |
BasicCollectionPersister(Collection collectionBinding,
CollectionRegionAccessStrategy cacheAccessStrategy,
PersisterCreationContext creationContext) |
CompositeElementPropertyMapping(java.lang.String[] elementColumns,
java.lang.String[] elementColumnReaders,
java.lang.String[] elementColumnReaderTemplates,
java.lang.String[] elementFormulaTemplates,
CompositeType compositeType,
Mapping factory) |
ElementPropertyMapping(java.lang.String[] elementColumns,
Type type) |
OneToManyPersister(Collection collectionBinding,
CollectionRegionAccessStrategy cacheAccessStrategy,
PersisterCreationContext creationContext) |
Modifier and Type | Method and Description |
---|---|
protected UniqueEntityLoader |
AbstractEntityPersister.createEntityLoader(LockMode lockMode)
Used internally to create static loaders.
|
protected UniqueEntityLoader |
AbstractEntityPersister.createEntityLoader(LockMode lockMode,
LoadQueryInfluencers loadQueryInfluencers) |
protected UniqueEntityLoader |
AbstractEntityPersister.createEntityLoader(LockOptions lockOptions,
LoadQueryInfluencers loadQueryInfluencers) |
protected void |
AbstractEntityPersister.createUniqueKeyLoaders() |
Size[] |
DiscriminatorType.defaultSizes(Mapping mapping) |
Size[] |
DiscriminatorType.dictatedSizes(Mapping mapping) |
protected abstract java.lang.String |
AbstractEntityPersister.filterFragment(java.lang.String alias) |
java.lang.String |
SingleTableEntityPersister.filterFragment(java.lang.String alias) |
java.lang.String |
Joinable.filterFragment(java.lang.String alias,
java.util.Map enabledFilters)
Get the where clause filter, given a query alias and considering enabled session filters
|
java.lang.String |
AbstractEntityPersister.filterFragment(java.lang.String alias,
java.util.Map enabledFilters) |
java.lang.String |
Joinable.filterFragment(java.lang.String alias,
java.util.Map enabledFilters,
java.util.Set<java.lang.String> treatAsDeclarations)
Get the where clause filter, given a query alias and considering enabled session filters
|
int |
DiscriminatorType.getColumnSpan(Mapping mapping) |
Type |
EntityPersister.getPropertyType(java.lang.String propertyName)
Get the type of a particular property by name.
|
Type |
AbstractEntityPersister.getPropertyType(java.lang.String propertyName)
Get the type of a particular property by name.
|
protected void |
AbstractPropertyMapping.initComponentPropertyPaths(java.lang.String path,
CompositeType type,
java.lang.String[] columns,
java.lang.String[] columnReaders,
java.lang.String[] columnReaderTemplates,
java.lang.String[] formulaTemplates,
Mapping factory) |
protected void |
AbstractPropertyMapping.initIdentifierPropertyPaths(java.lang.String path,
EntityType etype,
java.lang.String[] columns,
java.lang.String[] columnReaders,
java.lang.String[] columnReaderTemplates,
Mapping factory) |
protected void |
AbstractEntityPersister.initPropertyPaths(Mapping mapping) |
protected void |
AbstractPropertyMapping.initPropertyPaths(java.lang.String path,
Type type,
java.lang.String[] columns,
java.lang.String[] columnReaders,
java.lang.String[] columnReaderTemplates,
java.lang.String[] formulaTemplates,
Mapping factory) |
protected void |
AbstractEntityPersister.initSubclassPropertyAliasesMap(PersistentClass model)
Must be called by subclasses, at the end of their constructors
|
java.lang.String |
Joinable.oneToManyFilterFragment(java.lang.String alias) |
java.lang.String |
AbstractEntityPersister.oneToManyFilterFragment(java.lang.String alias) |
java.lang.String |
SingleTableEntityPersister.oneToManyFilterFragment(java.lang.String alias) |
protected void |
AbstractEntityPersister.postConstruct(Mapping mapping)
Post-construct is a callback for AbstractEntityPersister subclasses to call after they are all done with their
constructor processing.
|
void |
EntityPersister.postInstantiate()
Finish the initialization of this object.
|
void |
AbstractEntityPersister.postInstantiate() |
int[] |
DiscriminatorType.sqlTypes(Mapping mapping) |
Modifier and Type | Class and Description |
---|---|
class |
UnknownSqlResultSetMappingException |
Modifier and Type | Method and Description |
---|---|
ProcedureCall |
ProcedureCall.addSynchronizedEntityClass(java.lang.Class entityClass) |
ProcedureCall |
ProcedureCall.addSynchronizedEntityName(java.lang.String entityName) |
Modifier and Type | Method and Description |
---|---|
NativeQuery<T> |
NativeQuery.addSynchronizedEntityClass(java.lang.Class entityClass) |
NativeQuery<T> |
NativeQuery.addSynchronizedEntityName(java.lang.String entityName) |
Modifier and Type | Method and Description |
---|---|
NativeQueryImplementor<T> |
NativeQueryImpl.addSynchronizedEntityClass(java.lang.Class entityClass) |
NativeQueryImplementor<T> |
NativeQueryImpl.addSynchronizedEntityName(java.lang.String entityName) |
Modifier and Type | Method and Description |
---|---|
NativeQueryImplementor<T> |
NativeQueryImplementor.addSynchronizedEntityClass(java.lang.Class entityClass) |
NativeQueryImplementor<T> |
NativeQueryImplementor.addSynchronizedEntityName(java.lang.String entityName) |
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[] |
CompositeCustomType.defaultSizes(Mapping mapping) |
Size[] |
AbstractStandardBasicType.defaultSizes(Mapping mapping) |
Size[] |
MetaType.defaultSizes(Mapping mapping) |
Size[] |
OneToOneType.defaultSizes(Mapping mapping) |
Size[] |
SpecialOneToOneType.defaultSizes(Mapping mapping) |
Size[] |
ComponentType.defaultSizes(Mapping mapping) |
Size[] |
CustomType.defaultSizes(Mapping mapping) |
Size[] |
CollectionType.defaultSizes(Mapping mapping) |
Size[] |
ManyToOneType.defaultSizes(Mapping mapping) |
Size[] |
AnyType.defaultSizes(Mapping mapping) |
Size[] |
Type.dictatedSizes(Mapping mapping)
Return the column sizes dictated by this type.
|
Size[] |
CompositeCustomType.dictatedSizes(Mapping mapping) |
Size[] |
AbstractStandardBasicType.dictatedSizes(Mapping mapping) |
Size[] |
MetaType.dictatedSizes(Mapping mapping) |
Size[] |
OneToOneType.dictatedSizes(Mapping mapping) |
Size[] |
SpecialOneToOneType.dictatedSizes(Mapping mapping) |
Size[] |
ComponentType.dictatedSizes(Mapping mapping) |
Size[] |
CustomType.dictatedSizes(Mapping mapping) |
Size[] |
CollectionType.dictatedSizes(Mapping mapping) |
Size[] |
ManyToOneType.dictatedSizes(Mapping mapping) |
Size[] |
AnyType.dictatedSizes(Mapping mapping) |
java.lang.String |
CollectionType.getAssociatedEntityName(SessionFactoryImplementor factory) |
java.lang.String |
AssociationType.getAssociatedEntityName(SessionFactoryImplementor factory)
Get the entity name of the associated entity
|
Joinable |
EntityType.getAssociatedJoinable(SessionFactoryImplementor factory)
Retrieves the
Joinable defining the associated entity. |
Joinable |
CollectionType.getAssociatedJoinable(SessionFactoryImplementor factory) |
Joinable |
AssociationType.getAssociatedJoinable(SessionFactoryImplementor factory)
Get the "persister" for this association - a class or
collection persister
|
int |
Type.getColumnSpan(Mapping mapping)
How many columns are used to persist this type.
|
int |
CompositeCustomType.getColumnSpan(Mapping mapping) |
int |
AbstractStandardBasicType.getColumnSpan(Mapping mapping) |
int |
MetaType.getColumnSpan(Mapping mapping) |
int |
OneToOneType.getColumnSpan(Mapping session) |
int |
SpecialOneToOneType.getColumnSpan(Mapping mapping) |
int |
ComponentType.getColumnSpan(Mapping mapping) |
int |
CollectionType.getColumnSpan(Mapping session) |
int |
ManyToOneType.getColumnSpan(Mapping mapping) |
Type |
CollectionType.getElementType(SessionFactoryImplementor factory)
Get the Hibernate type of the collection elements
|
java.lang.String |
EntityType.getIdentifierOrUniqueKeyPropertyName(Mapping factory)
The name of the property on the associated entity to which our FK
refers
|
Type |
EntityType.getIdentifierOrUniqueKeyType(Mapping factory)
Determine the type of either (1) the identifier if we reference the
associated entity's PK or (2) the unique key to which we refer (i.e.
|
java.lang.String |
CollectionType.getOnCondition(java.lang.String alias,
SessionFactoryImplementor factory,
java.util.Map enabledFilters) |
java.lang.String |
AssociationType.getOnCondition(java.lang.String alias,
SessionFactoryImplementor factory,
java.util.Map enabledFilters)
Get the "filtering" SQL fragment that is applied in the
SQL on clause, in addition to the usual join condition
|
Type |
TypeResolver.heuristicType(java.lang.String typeName)
|
Type |
TypeResolver.heuristicType(java.lang.String typeName,
java.util.Properties parameters)
Uses heuristics to deduce the proper
Type given a string naming the type or Java class. |
int[] |
Type.sqlTypes(Mapping mapping)
Return the JDBC types codes (per
Types ) for the columns mapped by this type. |
int[] |
CompositeCustomType.sqlTypes(Mapping mapping) |
int[] |
AbstractStandardBasicType.sqlTypes(Mapping mapping) |
int[] |
MetaType.sqlTypes(Mapping mapping) |
int[] |
OneToOneType.sqlTypes(Mapping session) |
int[] |
SpecialOneToOneType.sqlTypes(Mapping mapping) |
int[] |
ComponentType.sqlTypes(Mapping mapping) |
int[] |
CollectionType.sqlTypes(Mapping session) |
int[] |
ManyToOneType.sqlTypes(Mapping mapping) |
int[] |
AnyType.sqlTypes(Mapping mapping) |
Constructor and Description |
---|
CustomType(UserType userType) |
CustomType(UserType userType,
java.lang.String[] registrationKeys) |
Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.