Uses of Interface
org.hibernate.type.Type

Packages that use Type
org.hibernate   
org.hibernate.cache   
org.hibernate.classic   
org.hibernate.collection   
org.hibernate.criterion   
org.hibernate.dialect   
org.hibernate.dialect.function   
org.hibernate.engine   
org.hibernate.engine.query   
org.hibernate.event.def   
org.hibernate.hql   
org.hibernate.hql.ast   
org.hibernate.hql.ast.tree   
org.hibernate.hql.ast.util   
org.hibernate.hql.classic   
org.hibernate.id   
org.hibernate.impl   
org.hibernate.loader   
org.hibernate.loader.collection   
org.hibernate.loader.criteria   
org.hibernate.loader.custom   
org.hibernate.loader.entity   
org.hibernate.mapping   
org.hibernate.metadata   
org.hibernate.param   
org.hibernate.persister.collection   
org.hibernate.persister.entity   
org.hibernate.pretty   
org.hibernate.property   
org.hibernate.tuple   
org.hibernate.type   
org.hibernate.usertype   
org.hibernate.util   
 

Uses of Type in org.hibernate
 

Fields in org.hibernate declared as Type
static Type Hibernate.BLOB
          Hibernate blob type.
static Type Hibernate.CLOB
          Hibernate clob type.
static Type Hibernate.OBJECT
          Hibernate object type.
 

Methods in org.hibernate that return Type
static Type Hibernate.serializable(Class serializableClass)
          A Hibernate serializable type.
static Type Hibernate.any(Type metaType, Type identifierType)
          A Hibernate any type.
static Type Hibernate.entity(Class persistentClass)
          A Hibernate persistent object (entity) type.
static Type Hibernate.entity(String entityName)
          A Hibernate persistent object (entity) type.
static Type Hibernate.custom(Class userTypeClass)
          A Hibernate custom type.
static Type Hibernate.custom(Class userTypeClass, String[] parameterNames, String[] parameterValues)
          A Hibernate parameterizable custom type.
static Type Hibernate.custom(Class userTypeClass, Properties parameters)
          A Hibernate parameterizable custom type.
 Type ScrollableResults.getType(int i)
          Get the type of the ith column of results
 Type[] Query.getReturnTypes()
          Return the Hibernate types of the query result set.
 

Methods in org.hibernate with parameters of type Type
static Type Hibernate.any(Type metaType, Type identifierType)
          A Hibernate any type.
 void EmptyInterceptor.onDelete(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types)
           
 boolean EmptyInterceptor.onFlushDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types)
           
 boolean EmptyInterceptor.onLoad(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types)
           
 boolean EmptyInterceptor.onSave(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types)
           
 int[] EmptyInterceptor.findDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types)
           
 boolean Interceptor.onLoad(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types)
          Called just before an object is initialized.
 boolean Interceptor.onFlushDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types)
          Called when an object is detected to be dirty, during a flush.
 boolean Interceptor.onSave(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types)
          Called before an object is saved.
 void Interceptor.onDelete(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types)
          Called before an object is deleted.
 int[] Interceptor.findDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types)
          Called from flush().
 Query Query.setParameter(int position, Object val, Type type)
          Bind a value to a JDBC-style query parameter.
 Query Query.setParameter(String name, Object val, Type type)
          Bind a value to a named query parameter.
 Query Query.setParameters(Object[] values, Type[] types)
          Bind values and types to positional parameters.
 Query Query.setParameterList(String name, Collection vals, Type type)
          Bind multiple values to a named query parameter.
 Query Query.setParameterList(String name, Object[] vals, Type type)
          Bind multiple values to a named query parameter.
 SQLQuery SQLQuery.addScalar(String columnAlias, Type type)
          Declare a scalar query result
 

Uses of Type in org.hibernate.cache
 

Methods in org.hibernate.cache with parameters of type Type
 boolean QueryCache.put(QueryKey key, Type[] returnTypes, List result, boolean isNaturalKeyLookup, SessionImplementor session)
           
 List QueryCache.get(QueryKey key, Type[] returnTypes, boolean isNaturalKeyLookup, Set spaces, SessionImplementor session)
           
 boolean StandardQueryCache.put(QueryKey key, Type[] returnTypes, List result, boolean isNaturalKeyLookup, SessionImplementor session)
           
 List StandardQueryCache.get(QueryKey key, Type[] returnTypes, boolean isNaturalKeyLookup, Set spaces, SessionImplementor session)
           
 

Constructors in org.hibernate.cache with parameters of type Type
CacheKey(Serializable id, Type type, String entityOrRoleName, EntityMode entityMode, SessionFactoryImplementor factory)
          Construct a new key for a collection or entity instance.
 

Uses of Type in org.hibernate.classic
 

Methods in org.hibernate.classic with parameters of type Type
 List Session.find(String query, Object value, Type type)
          Deprecated. use createQuery(query).setParameter(value,type).list() Bind a value to a "?" parameter in the query string.
 List Session.find(String query, Object[] values, Type[] types)
          Deprecated. use createQuery(query).setParameters(values,types).find() instead Binding an array of values to "?" parameters in the query string.
 Iterator Session.iterate(String query, Object value, Type type)
          Deprecated. use createQuery(query).setParameter(value,type).iterate()
 Iterator Session.iterate(String query, Object[] values, Type[] types)
          Deprecated. use createQuery(query).setParameters(values,types).iterate()
 Collection Session.filter(Object collection, String filter, Object value, Type type)
          Deprecated. use createQuery()
 Collection Session.filter(Object collection, String filter, Object[] values, Type[] types)
          Deprecated. use createQuery()
 int Session.delete(String query, Object value, Type type)
          Deprecated. use createQuery()
 int Session.delete(String query, Object[] values, Type[] types)
          Deprecated. use createQuery()
 

Uses of Type in org.hibernate.collection
 

Methods in org.hibernate.collection with parameters of type Type
 boolean PersistentElementHolder.needsInserting(Object entry, int i, Type elementType)
           
 boolean PersistentElementHolder.needsUpdating(Object entry, int i, Type elementType)
           
 boolean PersistentList.needsInserting(Object entry, int i, Type elemType)
           
 boolean PersistentList.needsUpdating(Object entry, int i, Type elemType)
           
 boolean PersistentCollection.needsInserting(Object entry, int i, Type elemType)
          Do we need to insert this element?
 boolean PersistentCollection.needsUpdating(Object entry, int i, Type elemType)
          Do we need to update this element?
 boolean PersistentBag.needsInserting(Object entry, int i, Type elemType)
           
 boolean PersistentBag.needsUpdating(Object entry, int i, Type elemType)
           
 boolean PersistentMap.needsInserting(Object entry, int i, Type elemType)
           
 boolean PersistentMap.needsUpdating(Object entry, int i, Type elemType)
           
 boolean PersistentArrayHolder.needsInserting(Object entry, int i, Type elemType)
           
 boolean PersistentArrayHolder.needsUpdating(Object entry, int i, Type elemType)
           
 boolean PersistentSet.needsInserting(Object entry, int i, Type elemType)
           
 boolean PersistentSet.needsUpdating(Object entry, int i, Type elemType)
           
 boolean PersistentIdentifierBag.needsInserting(Object entry, int i, Type elemType)
           
 boolean PersistentIdentifierBag.needsUpdating(Object entry, int i, Type elemType)
           
 boolean PersistentIndexedElementHolder.needsInserting(Object entry, int i, Type elementType)
           
 boolean PersistentIndexedElementHolder.needsUpdating(Object entry, int i, Type elementType)
           
 

Uses of Type in org.hibernate.criterion
 

Methods in org.hibernate.criterion that return Type
 Type[] Projection.getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
          Return types returned by the rendered SQL fragment
 Type[] Projection.getTypes(String alias, Criteria criteria, CriteriaQuery criteriaQuery)
          Return types for a particular user-visible alias
 Type[] CountProjection.getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type[] AvgProjection.getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type[] Distinct.getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type[] Distinct.getTypes(String alias, Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type CriteriaQuery.getType(Criteria criteria, String propertyPath)
          Get the type of a property path, ignoring projection aliases
 Type CriteriaQuery.getTypeUsingProjection(Criteria criteria, String propertyPath)
          Get the type of a property path
 Type CriteriaQuery.getIdentifierType(Criteria subcriteria)
          Get the identifier type of this entity
 Type[] SQLProjection.getTypes(Criteria crit, CriteriaQuery criteriaQuery)
           
 Type[] SQLProjection.getTypes(String alias, Criteria crit, CriteriaQuery criteriaQuery)
           
 Type[] ProjectionList.getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type[] ProjectionList.getTypes(String alias, Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type[] AliasedProjection.getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type[] AliasedProjection.getTypes(String alias, Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type[] RowCountProjection.getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type[] AggregateProjection.getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type[] SimpleProjection.getTypes(String alias, Criteria criteria, CriteriaQuery criteriaQuery)
           
 Type[] PropertyProjection.getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
           
protected  Type[] SubqueryExpression.getTypes()
           
 Type[] IdentifierProjection.getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
           
 

Methods in org.hibernate.criterion with parameters of type Type
protected  void Example.addPropertyTypedValue(Object value, Type type, List list)
           
 boolean Example.PropertySelector.include(Object propertyValue, String propertyName, Type type)
           
static Projection Projections.sqlProjection(String sql, String[] columnAliases, Type[] types)
          A SQL projection, a typed select clause fragment
static Projection Projections.sqlGroupProjection(String sql, String groupBy, String[] columnAliases, Type[] types)
          A grouping SQL projection, specifying both select clause and group by clause fragments
static Criterion Restrictions.sqlRestriction(String sql, Object[] values, Type[] types)
          Apply a constraint expressed in SQL, with the given JDBC parameters.
static Criterion Restrictions.sqlRestriction(String sql, Object value, Type type)
          Apply a constraint expressed in SQL, with the given JDBC parameter.
static Criterion Expression.sql(String sql, Object[] values, Type[] types)
          Apply a constraint expressed in SQL, with the given JDBC parameters.
static Criterion Expression.sql(String sql, Object value, Type type)
          Apply a constraint expressed in SQL, with the given JDBC parameter.
 

Constructors in org.hibernate.criterion with parameters of type Type
SQLProjection(String sql, String[] columnAliases, Type[] types)
           
SQLProjection(String sql, String groupBy, String[] columnAliases, Type[] types)
           
SQLCriterion(String sql, Object[] values, Type[] types)
           
 

Uses of Type in org.hibernate.dialect
 

Methods in org.hibernate.dialect that return Type
 Type SQLServerDialect.TrimFunction.getReturnType(Type columnType, Mapping mapping)
           
 

Methods in org.hibernate.dialect with parameters of type Type
 Type SQLServerDialect.TrimFunction.getReturnType(Type columnType, Mapping mapping)
           
 

Uses of Type in org.hibernate.dialect.function
 

Methods in org.hibernate.dialect.function that return Type
 Type VarArgsSQLFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type NoArgSQLFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type StandardSQLFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type NvlFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type PositionSubstringFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type SQLFunctionTemplate.getReturnType(Type columnType, Mapping mapping)
           
 Type CharIndexFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type SQLFunction.getReturnType(Type columnType, Mapping mapping)
          The function return type
 Type CastFunction.getReturnType(Type columnType, Mapping mapping)
           
 

Methods in org.hibernate.dialect.function with parameters of type Type
 Type VarArgsSQLFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type NoArgSQLFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type StandardSQLFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type NvlFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type PositionSubstringFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type SQLFunctionTemplate.getReturnType(Type columnType, Mapping mapping)
           
 Type CharIndexFunction.getReturnType(Type columnType, Mapping mapping)
           
 Type SQLFunction.getReturnType(Type columnType, Mapping mapping)
          The function return type
 Type CastFunction.getReturnType(Type columnType, Mapping mapping)
           
 

Constructors in org.hibernate.dialect.function with parameters of type Type
VarArgsSQLFunction(Type type, String begin, String sep, String end)
           
NoArgSQLFunction(String name, Type returnType)
           
NoArgSQLFunction(String name, Type returnType, boolean hasParenthesesIfNoArguments)
           
StandardSQLFunction(String name, Type typeValue)
           
SQLFunctionTemplate(Type type, String template)
           
SQLFunctionTemplate(Type type, String template, boolean hasParenthesesIfNoArgs)
           
 

Uses of Type in org.hibernate.engine
 

Methods in org.hibernate.engine that return Type
 Type Mapping.getIdentifierType(String className)
           
 Type Mapping.getReferencedPropertyType(String className, String propertyName)
           
 Type FilterDefinition.getParameterType(String parameterName)
          Retreive the type of the named parameter defined for this filter.
 Type[] QueryParameters.getPositionalParameterTypes()
           
 Type[] QueryParameters.getFilteredPositionalParameterTypes()
           
 Type[] SessionFactoryImplementor.getReturnTypes(String queryString)
          Get the return types of a query
 Type TypedValue.getType()
           
 Type SessionImplementor.getFilterParameterType(String filterParameterName)
          Retreive the type for a given filter parrameter.
 

Methods in org.hibernate.engine with parameters of type Type
static IdentifierValue UnsavedValueFactory.getUnsavedIdentifierValue(String unsavedValue, Getter identifierGetter, Type identifierType, Constructor constructor)
          Return an IdentifierValue for the specified unsaved-value.
 void ForeignKeys.Nullifier.nullifyTransientReferences(Object[] values, Type[] types)
          Nullify all references to entities that have not yet been inserted in the database, where the foreign key points toward that entity
 void QueryParameters.setPositionalParameterTypes(Type[] types)
           
static int ParameterBinder.bindPositionalParameters(PreparedStatement st, Object[] values, Type[] types, int start, SessionImplementor session)
           
 

Constructors in org.hibernate.engine with parameters of type Type
QueryParameters(Type type, Object value)
           
QueryParameters(Type[] positionalParameterTypes, Object[] postionalParameterValues, Object optionalObject, String optionalEntityName, Serializable optionalObjectId)
           
QueryParameters(Type[] positionalParameterTypes, Object[] postionalParameterValues)
           
QueryParameters(Type[] positionalParameterTypes, Object[] postionalParameterValues, Serializable[] collectionKeys)
           
QueryParameters(Type[] positionalParameterTypes, Object[] postionalParameterValues, Map namedParameters, Serializable[] collectionKeys)
           
QueryParameters(Type[] positionalParameterTypes, Object[] positionalParameterValues, Map lockModes, RowSelection rowSelection, boolean cacheable, String cacheRegion, String comment, boolean isLookupByNaturalKey)
           
QueryParameters(Type[] positionalParameterTypes, Object[] positionalParameterValues, Map namedParameters, Map lockModes, RowSelection rowSelection, boolean readOnly, boolean cacheable, String cacheRegion, String comment, Serializable[] collectionKeys)
           
QueryParameters(Type[] positionalParameterTypes, Object[] positionalParameterValues, Map namedParameters, Map lockModes, RowSelection rowSelection, boolean readOnly, boolean cacheable, String cacheRegion, String comment, Serializable[] collectionKeys, Object optionalObject, String optionalEntityName, Serializable optionalId)
           
TypedValue(Type type, Object value, EntityMode entityMode)
           
EntityUniqueKey(String entityName, String uniqueKeyName, Object semiResolvedKey, Type keyType, EntityMode entityMode, SessionFactoryImplementor factory)
           
 

Uses of Type in org.hibernate.engine.query
 

Methods in org.hibernate.engine.query that return Type
 Type[] ReturnMetadata.getReturnTypes()
           
 Type OrdinalParameterDescriptor.getExpectedType()
           
 Type[] QueryMetadata.getReturnTypes()
          An array of types describing the returns of the source query.
 Type ParameterMetadata.getOrdinalParameterExpectedType(int position)
           
 Type ParameterMetadata.getNamedParameterExpectedType(String name)
           
 Type NamedParameterDescriptor.getExpectedType()
           
 

Constructors in org.hibernate.engine.query with parameters of type Type
ReturnMetadata(String[] returnAliases, Type[] returnTypes)
           
OrdinalParameterDescriptor(int ordinalPosition, Type expectedType, int sourceLocation)
           
QueryMetadata(String sourceQuery, ParameterMetadata parameterMetadata, String[] returnAliases, Type[] returnTypes, Set querySpaces)
           
NamedParameterDescriptor(String name, Type expectedType, int[] sourceLocations)
           
 

Uses of Type in org.hibernate.event.def
 

Methods in org.hibernate.event.def with parameters of type Type
protected  boolean DefaultReplicateEventListener.visitCollectionsBeforeSave(Serializable id, Object[] values, Type[] types, EventSource source)
           
 void AbstractVisitor.processEntityPropertyValues(Object[] values, Type[] types)
          Dispatch each property value to processValue().
protected  boolean AbstractSaveEventListener.visitCollectionsBeforeSave(Serializable id, Object[] values, Type[] types, EventSource source)
           
 

Uses of Type in org.hibernate.hql
 

Methods in org.hibernate.hql that return Type
 Type ParameterTranslations.getOrdinalParameterExpectedType(int ordinalPosition)
           
 Type ParameterTranslations.getNamedParameterExpectedType(String name)
           
 Type[] QueryTranslator.getReturnTypes()
          Returns an array of Types represented in the query result.
 

Methods in org.hibernate.hql with parameters of type Type
static String[][] NameGenerator.generateColumnNames(Type[] types, SessionFactoryImplementor f)
           
 

Uses of Type in org.hibernate.hql.ast
 

Methods in org.hibernate.hql.ast that return Type
 Type[] HqlSqlWalker.getReturnTypes()
           
 Type[] QueryTranslatorImpl.getReturnTypes()
          Types of the return values of an iterate() style query.
 Type ParameterTranslationsImpl.getOrdinalParameterExpectedType(int ordinalPosition)
           
 Type ParameterTranslationsImpl.getNamedParameterExpectedType(String name)
           
 Type ParameterTranslationsImpl.ParameterInfo.getExpectedType()
           
 

Constructors in org.hibernate.hql.ast with parameters of type Type
ParameterTranslationsImpl.ParameterInfo(int[] sqlPositions, Type expectedType)
           
ParameterTranslationsImpl.ParameterInfo(int sqlPosition, Type expectedType)
           
 

Uses of Type in org.hibernate.hql.ast.tree
 

Methods in org.hibernate.hql.ast.tree that return Type
 Type SelectExpression.getDataType()
          Returns the data type of the select expression.
 Type QueryNode.getDataType()
           
 Type BetweenOperatorNode.getDataType()
           
 Type[] SelectClause.getQueryReturnTypes()
          The types actually being returned from this query at the "object level".
 Type UnaryArithmeticNode.getDataType()
           
 Type BinaryLogicOperatorNode.getDataType()
           
 Type Case2Node.getDataType()
           
 Type[] IntoClause.getInsertionTypes()
           
 Type ConstructorNode.getDataType()
          Deprecated. (tell clover to ignore this method)
 Type CaseNode.getDataType()
           
 Type BinaryArithmeticOperatorNode.getDataType()
          Figure out the type of the binary expression by looking at the types of the operands.
 Type FromElement.getDataType()
           
 Type FromElement.getSelectType()
           
 Type FromElement.getPropertyType(String propertyName, String propertyPath)
          Returns the type of a property, given it's name (the last part) and the full path.
 Type AggregateNode.getDataType()
           
 Type DotNode.getDataType()
           
 Type LiteralNode.getDataType()
           
 Type OperatorNode.getDataType()
          Retrieves the data type for the overall operator expression.
 Type IdentNode.getDataType()
           
 Type UnaryLogicOperatorNode.getDataType()
           
 Type CountNode.getDataType()
           
 Type SqlNode.getDataType()
           
 

Methods in org.hibernate.hql.ast.tree with parameters of type Type
 void SqlNode.setDataType(Type dataType)
           
 

Uses of Type in org.hibernate.hql.ast.util
 

Methods in org.hibernate.hql.ast.util that return Type
 Type SessionFactoryHelper.findFunctionReturnType(String functionName, antlr.collections.AST first)
          Find the function return type given the function name and the first argument expression node.
 

Methods in org.hibernate.hql.ast.util with parameters of type Type
 int SessionFactoryHelper.getColumnSpan(Type type)
          Retreive the number of columns represented by this type.
 String[][] SessionFactoryHelper.generateColumnNames(Type[] sqlResultTypes)
           
 

Uses of Type in org.hibernate.hql.classic
 

Methods in org.hibernate.hql.classic that return Type
 Type[] QueryTranslatorImpl.getReturnTypes()
          Types of the return values of an iterate() style query.
 Type SelectParser.aggregateType(List funcTokenList, Type type, QueryTranslatorImpl q)
           
protected  Type PathExpressionParser.getPropertyType()
           
 Type PathExpressionParser.getWhereColumnType()
           
 

Methods in org.hibernate.hql.classic with parameters of type Type
 Type SelectParser.aggregateType(List funcTokenList, Type type, QueryTranslatorImpl q)
           
 

Uses of Type in org.hibernate.id
 

Methods in org.hibernate.id with parameters of type Type
 void TableHiLoGenerator.configure(Type type, Properties params, Dialect d)
           
 void TableGenerator.configure(Type type, Properties params, Dialect dialect)
           
 void SequenceGenerator.configure(Type type, Properties params, Dialect dialect)
           
 void SelectGenerator.configure(Type type, Properties params, Dialect d)
           
 void UUIDHexGenerator.configure(Type type, Properties params, Dialect d)
           
 void ForeignGenerator.configure(Type type, Properties params, Dialect d)
           
static Serializable IdentifierGeneratorFactory.getGeneratedIdentity(ResultSet rs, Type type)
          Get the generated identifier when using identity columns
static Serializable IdentifierGeneratorFactory.get(ResultSet rs, Type type)
           
static IdentifierGenerator IdentifierGeneratorFactory.create(String strategy, Type type, Properties params, Dialect dialect)
           
 void Assigned.configure(Type type, Properties params, Dialect d)
           
 void Configurable.configure(Type type, Properties params, Dialect d)
          Configure this instance, given the value of parameters specified by the user as <param> elements.
 void SequenceHiLoGenerator.configure(Type type, Properties params, Dialect d)
           
 void MultipleHiLoPerTableGenerator.configure(Type type, Properties params, Dialect dialect)
           
 void IncrementGenerator.configure(Type type, Properties params, Dialect dialect)
           
 

Uses of Type in org.hibernate.impl
 

Methods in org.hibernate.impl that return Type
 Type[] SQLQueryImpl.getReturnTypes()
           
 Type StatelessSessionImpl.getFilterParameterType(String filterParameterName)
           
 Type SessionFactoryImpl.getIdentifierType(String className)
           
 Type[] SessionFactoryImpl.getReturnTypes(String queryString)
           
 Type SessionFactoryImpl.getReferencedPropertyType(String className, String propertyName)
           
protected  Type[] AbstractScrollableResults.getTypes()
           
 Type AbstractScrollableResults.getType(int i)
           
 Type[] CollectionFilterImpl.typeArray()
           
 Type[] AbstractQueryImpl.getReturnTypes()
           
protected  Type AbstractQueryImpl.determineType(int paramPosition, Object paramValue)
           
protected  Type AbstractQueryImpl.determineType(String paramName, Object paramValue)
           
protected  Type AbstractQueryImpl.determineType(String paramName, Class clazz)
           
 Type[] AbstractQueryImpl.typeArray()
           
 Type SessionImpl.getFilterParameterType(String filterParameterName)
           
 

Methods in org.hibernate.impl with parameters of type Type
 SQLQuery SQLQueryImpl.addScalar(String columnAlias, Type type)
           
protected  Object AbstractScrollableResults.getFinal(int col, Type returnType)
          Check that the requested type is compatible with the result type, and return the column value.
protected  Object AbstractScrollableResults.getNonFinal(int col, Type returnType)
          Check that the requested type is compatible with the result type, and return the column value.
 Query AbstractQueryImpl.setParameter(int position, Object val, Type type)
           
 Query AbstractQueryImpl.setParameter(String name, Object val, Type type)
           
 Query AbstractQueryImpl.setParameterList(String name, Collection vals, Type type)
           
 Query AbstractQueryImpl.setParameterList(String name, Object[] vals, Type type)
           
 Query AbstractQueryImpl.setParameters(Object[] values, Type[] types)
           
 List SessionImpl.find(String query, Object value, Type type)
           
 List SessionImpl.find(String query, Object[] values, Type[] types)
           
 Iterator SessionImpl.iterate(String query, Object value, Type type)
           
 Iterator SessionImpl.iterate(String query, Object[] values, Type[] types)
           
 int SessionImpl.delete(String query, Object value, Type type)
           
 int SessionImpl.delete(String query, Object[] values, Type[] types)
           
 Collection SessionImpl.filter(Object collection, String filter, Object value, Type type)
           
 Collection SessionImpl.filter(Object collection, String filter, Object[] values, Type[] types)
           
 

Constructors in org.hibernate.impl with parameters of type Type
IteratorImpl(ResultSet rs, PreparedStatement ps, EventSource sess, Type[] types, String[][] columnNames, HolderInstantiator holderInstantiator)
           
FetchingScrollableResultsImpl(ResultSet rs, PreparedStatement ps, SessionImplementor sess, Loader loader, QueryParameters queryParameters, Type[] types, HolderInstantiator holderInstantiator)
           
ScrollableResultsImpl(ResultSet rs, PreparedStatement ps, SessionImplementor sess, Loader loader, QueryParameters queryParameters, Type[] types, HolderInstantiator holderInstantiator)
           
AbstractScrollableResults(ResultSet rs, PreparedStatement ps, SessionImplementor sess, Loader loader, QueryParameters queryParameters, Type[] types, HolderInstantiator holderInstantiator)
           
 

Uses of Type in org.hibernate.loader
 

Methods in org.hibernate.loader with parameters of type Type
protected  List Loader.loadEntity(SessionImplementor session, Object id, Type identifierType, Object optionalObject, String optionalEntityName, Serializable optionalIdentifier, EntityPersister persister)
          Called by subclasses that load entities
protected  List Loader.loadEntity(SessionImplementor session, Object key, Object index, Type keyType, Type indexType, EntityPersister persister)
          Called by subclasses that load entities
 List Loader.loadEntityBatch(SessionImplementor session, Serializable[] ids, Type idType, Object optionalObject, String optionalEntityName, Serializable optionalId, EntityPersister persister)
          Called by wrappers that batch load entities
 void Loader.loadCollection(SessionImplementor session, Serializable id, Type type)
          Called by subclasses that initialize collections
 void Loader.loadCollectionBatch(SessionImplementor session, Serializable[] ids, Type type)
          Called by wrappers that batch initialize collections
protected  void Loader.loadCollectionSubselect(SessionImplementor session, Serializable[] ids, Object[] parameterValues, Type[] parameterTypes, Map namedParameters, Type type)
          Called by subclasses that batch initialize collections
protected  List Loader.list(SessionImplementor session, QueryParameters queryParameters, Set querySpaces, Type[] resultTypes)
          Return the query results, using the query cache, called by subclasses that implement cacheable queries
protected  ScrollableResults Loader.scroll(QueryParameters queryParameters, Type[] returnTypes, HolderInstantiator holderInstantiator, SessionImplementor session)
          Return the query results, as an instance of ScrollableResults
 

Uses of Type in org.hibernate.loader.collection
 

Methods in org.hibernate.loader.collection that return Type
protected  Type CollectionLoader.getKeyType()
           
 

Uses of Type in org.hibernate.loader.criteria
 

Methods in org.hibernate.loader.criteria that return Type
 Type[] CriteriaQueryTranslator.getProjectedTypes()
           
 Type CriteriaQueryTranslator.getIdentifierType(Criteria subcriteria)
           
 Type CriteriaQueryTranslator.getTypeUsingProjection(Criteria subcriteria, String propertyName)
           
 Type CriteriaQueryTranslator.getType(Criteria subcriteria, String propertyName)
           
 Type[] CriteriaJoinWalker.getResultTypes()
           
 

Uses of Type in org.hibernate.loader.custom
 

Methods in org.hibernate.loader.custom that return Type
 Type SQLQueryScalarReturn.getType()
           
 Type[] SQLCustomQuery.getScalarTypes()
           
 Type[] CustomQuery.getScalarTypes()
          Optional, may return null
 

Constructors in org.hibernate.loader.custom with parameters of type Type
SQLQueryScalarReturn(String alias, Type type)
           
 

Uses of Type in org.hibernate.loader.entity
 

Fields in org.hibernate.loader.entity declared as Type
protected  Type AbstractEntityLoader.uniqueKeyType
           
 

Constructors in org.hibernate.loader.entity with parameters of type Type
AbstractEntityLoader(OuterJoinLoadable persister, Type uniqueKeyType, SessionFactoryImplementor factory, Map enabledFilters)
           
EntityLoader(OuterJoinLoadable persister, String[] uniqueKey, Type uniqueKeyType, int batchSize, LockMode lockMode, SessionFactoryImplementor factory, Map enabledFilters)
           
 

Uses of Type in org.hibernate.mapping
 

Methods in org.hibernate.mapping that return Type
abstract  Type ToOne.getType()
           
 Type Component.getType()
           
 Type SimpleValue.getType()
           
 Type Any.getType()
           
 Type ManyToOne.getType()
           
 Type Property.getType()
           
 Type Value.getType()
           
 Type OneToOne.getType()
           
 Type OneToMany.getType()
           
 Type DependantValue.getType()
           
 Type Collection.getType()
           
 

Uses of Type in org.hibernate.metadata
 

Methods in org.hibernate.metadata that return Type
 Type CollectionMetadata.getKeyType()
          The collection key type
 Type CollectionMetadata.getElementType()
          The collection element type
 Type CollectionMetadata.getIndexType()
          The collection index type (or null if the collection has no index)
 Type ClassMetadata.getIdentifierType()
          Get the identifier Hibernate type
 Type[] ClassMetadata.getPropertyTypes()
          Get the Hibernate types of the class properties
 Type ClassMetadata.getPropertyType(String propertyName)
          Get the type of a particular (named) property
 

Uses of Type in org.hibernate.param
 

Methods in org.hibernate.param that return Type
 Type AbstractExplicitParameterSpecification.getExpectedType()
           
 Type ParameterSpecification.getExpectedType()
           
 Type VersionTypeSeedParameterSpecification.getExpectedType()
           
 

Methods in org.hibernate.param with parameters of type Type
 void AbstractExplicitParameterSpecification.setExpectedType(Type expectedType)
           
 void ParameterSpecification.setExpectedType(Type expectedType)
           
 void VersionTypeSeedParameterSpecification.setExpectedType(Type expectedType)
           
 

Uses of Type in org.hibernate.persister.collection
 

Fields in org.hibernate.persister.collection declared as Type
protected  Type AbstractCollectionPersister.elementType
           
 

Methods in org.hibernate.persister.collection that return Type
 Type AbstractCollectionPersister.getKeyType()
           
 Type AbstractCollectionPersister.getIndexType()
           
 Type AbstractCollectionPersister.getElementType()
           
 Type AbstractCollectionPersister.getIdentifierType()
           
 Type AbstractCollectionPersister.toType(String propertyName)
           
 Type AbstractCollectionPersister.getType()
           
 Type CollectionPersister.getKeyType()
          Get the "key" type (the type of the foreign key)
 Type CollectionPersister.getIndexType()
          Get the "index" type for a list or map (optional operation)
 Type CollectionPersister.getElementType()
          Get the "element" type
 Type CollectionPersister.getIdentifierType()
          Get the type of the surrogate key
 Type ElementPropertyMapping.toType(String propertyName)
           
 Type ElementPropertyMapping.getType()
           
 Type CollectionPropertyMapping.toType(String propertyName)
           
 Type CollectionPropertyMapping.getType()
           
 Type CompositeElementPropertyMapping.getType()
           
 

Constructors in org.hibernate.persister.collection with parameters of type Type
ElementPropertyMapping(String[] elementColumns, Type type)
           
 

Uses of Type in org.hibernate.persister.entity
 

Methods in org.hibernate.persister.entity that return Type
 Type EntityPersister.getPropertyType(String propertyName)
          Get the type of a particular property
 Type[] EntityPersister.getPropertyTypes()
          Get the Hibernate types of the class properties
 Type EntityPersister.getIdentifierType()
          Get the identifier type
 Type PropertyMapping.toType(String propertyName)
          Given a component path expression, get the type of the property
 Type PropertyMapping.getType()
          Get the type of the thing containing the properties
 Type AbstractEntityPersister.toType(String propertyName)
           
 Type AbstractEntityPersister.getSubclassPropertyType(int i)
           
protected  Type[] AbstractEntityPersister.getSubclassPropertyTypeClosure()
           
 Type AbstractEntityPersister.getPropertyType(String propertyName)
           
 Type AbstractEntityPersister.getType()
           
 Type[] AbstractEntityPersister.getPropertyTypes()
           
 Type AbstractEntityPersister.getIdentifierType()
           
 Type SQLLoadable.getType()
          Get the type
 Type UnionSubclassEntityPersister.getDiscriminatorType()
           
 Type SingleTableEntityPersister.getDiscriminatorType()
           
 Type OuterJoinLoadable.getSubclassPropertyType(int i)
          Get the type of the numbered property of the class or a subclass.
 Type BasicEntityPropertyMapping.getType()
           
 Type Loadable.getDiscriminatorType()
          Get the discriminator type
 Type AbstractPropertyMapping.toType(String propertyName)
           
 Type JoinedSubclassEntityPersister.getDiscriminatorType()
           
 

Methods in org.hibernate.persister.entity with parameters of type Type
protected  void AbstractPropertyMapping.addPropertyPath(String path, Type type, String[] columns, String[] formulaTemplates)
           
protected  void AbstractPropertyMapping.initPropertyPaths(String path, Type type, String[] columns, String[] formulaTemplates, Mapping factory)
           
 

Uses of Type in org.hibernate.pretty
 

Methods in org.hibernate.pretty with parameters of type Type
static String MessageHelper.infoString(EntityPersister persister, Object id, Type identifierType, SessionFactoryImplementor factory)
          Generate an info message string relating to a particular entity,.
 String Printer.toString(Type[] types, Object[] values)
           
 

Uses of Type in org.hibernate.property
 

Fields in org.hibernate.property declared as Type
protected  Type Dom4jAccessor.Dom4jGetter.propertyType
           
protected  Type Dom4jAccessor.Dom4jSetter.propertyType
           
 

Methods in org.hibernate.property with parameters of type Type
static PropertyAccessor PropertyAccessorFactory.getDom4jPropertyAccessor(String nodeName, Type type, SessionFactoryImplementor factory)
           
 

Constructors in org.hibernate.property with parameters of type Type
Dom4jAccessor(String nodeName, Type propertyType, SessionFactoryImplementor factory)
           
 

Uses of Type in org.hibernate.tuple
 

Methods in org.hibernate.tuple that return Type
 Type Property.getType()
           
 Type[] EntityMetamodel.getPropertyTypes()
           
 

Constructors in org.hibernate.tuple with parameters of type Type
IdentifierProperty(String name, String node, Type type, boolean embedded, IdentifierValue unsavedValue, IdentifierGenerator identifierGenerator)
          Construct a non-virtual identifier property.
IdentifierProperty(Type type, boolean embedded, IdentifierValue unsavedValue, IdentifierGenerator identifierGenerator)
          Construct a virtual IdentifierProperty.
VersionProperty(String name, String node, Type type, boolean lazy, boolean insertable, boolean updateable, boolean insertGenerated, boolean updateGenerated, boolean nullable, boolean checkable, boolean versionable, CascadeStyle cascadeStyle, VersionValue unsavedValue)
          Constructs VersionProperty instances.
Property(String name, String node, Type type)
          Constructor for Property instances.
StandardProperty(String name, String node, Type type, boolean lazy, boolean insertable, boolean updateable, boolean insertGenerated, boolean updateGenerated, boolean nullable, boolean checkable, boolean versionable, CascadeStyle cascadeStyle)
          Constructs StandardProperty instances.
 

Uses of Type in org.hibernate.type
 

Subinterfaces of Type in org.hibernate.type
 interface AbstractComponentType
          Enables other Component-like types to hold collections and have cascades, etc.
 interface AssociationType
          A type that represents some kind of association between entities.
 interface DiscriminatorType
          A Type that may be used for a discriminator column.
 interface IdentifierType
          A Type that may be used as an identifier.
 interface VersionType
          A Type that may be used to version data.
 

Classes in org.hibernate.type that implement Type
 class AbstractType
          Abstract superclass of the built in Type hierarchy.
 class AdaptedImmutableType
          Optimize a mutable type, if the user promises not to mutable the instances.
 class AnyType
          Handles "any" mappings and the old deprecated "object" type
 class ArrayType
          A type for persistent arrays.
 class BagType
           
 class BigDecimalType
          big_decimal: A type that maps an SQL NUMERIC to a java.math.BigDecimal
 class BigIntegerType
          big_integer: A type that maps an SQL NUMERIC to a java.math.BigInteger
 class BinaryType
          binary: A type that maps an SQL VARBINARY to a Java byte[].
 class BlobType
          blob: A type that maps an SQL BLOB to a java.sql.Blob.
 class BooleanType
          boolean: A type that maps an SQL BIT to a Java Boolean.
 class ByteType
          byte: A type that maps an SQL TINYINT to a Java Byte.
 class CalendarDateType
          calendar_date: A type mapping for a Calendar object that represents a date.
 class CalendarType
          calendar: A type mapping for a Calendar object that represents a datetime.
 class CharacterType
          character: A type that maps an SQL CHAR(1) to a Java Character.
 class CharBooleanType
          Superclass for types that map Java boolean to SQL CHAR(1).
 class ClassType
          class: A type that maps an SQL VARCHAR to a Java Class.
 class ClobType
          clob: A type that maps an SQL CLOB to a java.sql.Clob.
 class CollectionType
          A type that handles Hibernate PersistentCollections (including arrays).
 class ComponentType
          Handles "component" mappings
 class CompositeCustomType
          Adapts CompositeUserType to Type interface
 class CurrencyType
          currency: A type that maps an SQL VARCHAR to a java.util.Currency
 class CustomCollectionType
          A custom type for mapping user-written classes that implement PersistentCollection
 class CustomType
          Adapts UserType to the generic Type interface.
 class DateType
          date: A type that maps an SQL DATE to a Java Date.
 class DbTimestampType
          dbtimestamp: An extension of TimestampType which maps to the database's current timestamp, rather than the jvm's current timestamp.
 class DoubleType
          double: A type that maps an SQL DOUBLE to a Java Double.
 class EmbeddedComponentType
           
 class EntityType
          A reference to an entity class
 class FloatType
          float: A type that maps an SQL FLOAT to a Java Float.
 class IdentifierBagType
           
 class ImmutableType
          Superclass of nullable immutable types.
 class IntegerType
          integer: A type that maps an SQL INT to a Java Integer.
 class ListType
           
 class LocaleType
          locale: A type that maps an SQL VARCHAR to a Java Locale.
 class LongType
          long: A type that maps an SQL BIGINT to a Java Long.
 class ManyToOneType
          A many-to-one association to an entity
 class MapType
           
 class MetaType
           
 class MutableType
          Superclass for mutable nullable types
 class NullableType
          Superclass of single-column nullable types.
 class OneToOneType
          A one-to-one association to an entity
 class OrderedMapType
           
 class OrderedSetType
           
 class PrimitiveType
          Superclass of primitive / primitive wrapper types.
 class SerializableType
          serializable: A type that maps an SQL VARBINARY to a serializable Java object.
 class SetType
           
 class ShortType
          short: A type that maps an SQL SMALLINT to a Java Short.
 class SortedMapType
           
 class SortedSetType
           
 class SpecialOneToOneType
          A one-to-one association that maps to specific formula(s) instead of the primary key column of the owning entity.
 class StringType
          string: A type that maps an SQL VARCHAR to a Java String.
 class TextType
          text: A type that maps an SQL CLOB to a Java String.
 class TimestampType
          timestamp: A type that maps an SQL TIMESTAMP to a Java java.util.Date or java.sql.Timestamp.
 class TimeType
          time: A type that maps an SQL TIME to a Java java.util.Date or java.sql.Time.
 class TimeZoneType
          timezone: A type that maps an SQL VARCHAR to a java.util.TimeZone
 class TrueFalseType
          true_false: A type that maps an SQL CHAR(1) to a Java Boolean.
 class YesNoType
          yes_no: A type that maps an SQL CHAR(1) to a Java Boolean.
 

Methods in org.hibernate.type that return Type
 Type[] AbstractComponentType.getSubtypes()
          Get the types of the component properties
 Type EntityType.getIdentifierOrUniqueKeyType(Mapping factory)
           
 Type EntityType.getSemiResolvedType(SessionFactoryImplementor factory)
           
 Type[] CompositeCustomType.getSubtypes()
           
static Type TypeFactory.basic(String name)
          Given the name of a Hibernate basic type, return an instance of org.hibernate.type.Type.
static Type TypeFactory.heuristicType(String typeName)
          Uses heuristics to deduce a Hibernate type given a string naming the type or Java class.
static Type TypeFactory.heuristicType(String typeName, Properties parameters)
          Uses heuristics to deduce a Hibernate type given a string naming the type or Java class.
 Type CollectionType.getElementType(SessionFactoryImplementor factory)
          Get the Hibernate type of the collection elements
 Type AbstractType.getSemiResolvedType(SessionFactoryImplementor factory)
           
 Type Type.getSemiResolvedType(SessionFactoryImplementor factory)
          Get the type of a semi-resolved value.
 Type[] AnyType.getSubtypes()
           
 Type[] ComponentType.getSubtypes()
           
 

Methods in org.hibernate.type with parameters of type Type
static void TypeFactory.deepCopy(Object[] values, Type[] types, boolean[] copy, Object[] target, SessionImplementor session)
          Deep copy values in the first array into the second
static void TypeFactory.beforeAssemble(Serializable[] row, Type[] types, SessionImplementor session)
          Determine if any of the given field values are modified, returning an array containing indexes of the dirty fields or null if no fields are dirty.
static Object[] TypeFactory.assemble(Serializable[] row, Type[] types, SessionImplementor session, Object owner)
           
static Serializable[] TypeFactory.disassemble(Object[] row, Type[] types, boolean[] nonCacheable, SessionImplementor session, Object owner)
           
static Object[] TypeFactory.replace(Object[] original, Object[] target, Type[] types, SessionImplementor session, Object owner, Map copyCache)
           
static Object[] TypeFactory.replace(Object[] original, Object[] target, Type[] types, SessionImplementor session, Object owner, Map copyCache, ForeignKeyDirection foreignKeyDirection)
           
 

Constructors in org.hibernate.type with parameters of type Type
MetaType(Map values, Type baseType)
           
EmbeddedComponentType(String[] propertyNames, Type[] propertyTypes, boolean[] nullabilities, FetchMode[] joinedFetch, CascadeStyle[] cascade, boolean key, TuplizerLookup tuplizers)
           
AnyType(Type metaType, Type identifierType)
           
ComponentType(String[] propertyNames, Type[] propertyTypes, boolean[] nullabilities, FetchMode[] joinedFetch, CascadeStyle[] cascade, boolean key, TuplizerLookup tuplizers)
           
 

Uses of Type in org.hibernate.usertype
 

Methods in org.hibernate.usertype that return Type
 Type[] CompositeUserType.getPropertyTypes()
          Get the corresponding "property types".
 

Uses of Type in org.hibernate.util
 

Fields in org.hibernate.util declared as Type
static Type[] ArrayHelper.EMPTY_TYPE_ARRAY
           
 

Methods in org.hibernate.util that return Type
static Type[] ArrayHelper.toTypeArray(Collection coll)
           
 

Methods in org.hibernate.util with parameters of type Type
static Constructor ReflectHelper.getConstructor(Class clazz, Type[] types)