| Name | Description | Type | Package | Framework |
| AbsFunction | Models the ANSI SQL ABS function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| AbstractFromImpl | Convenience base class for various From implementors. | Class | org.hibernate.ejb.criteria.path | Hibernate ORM |
| AbstractFromImpl .JoinScope | Helper contract used to define who/what keeps track of joins and fetches made from this FROM. | Interface | org.hibernate.ejb.criteria.path.AbstractFromImpl | Hibernate ORM |
| AbstractJoinImpl | Class | org.hibernate.ejb.criteria.path | Hibernate ORM | |
| AbstractNode | All nodes in a criteria query tree will generally need access to the CriteriaBuilderImpl from which they come. | Class | org.hibernate.ejb.criteria | Hibernate ORM |
| AbstractPathImpl | Convenience base class for various Path implementors. | Class | org.hibernate.ejb.criteria.path | Hibernate ORM |
| AbstractPredicateImpl | Basic template support for Predicate implementors providing expression handling, negation and conjunction/disjunction handling. | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| AbstractSimplePredicate | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM | |
| AbstractTupleElement | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM | |
| AggregationFunction | Models SQL aggregation functions (MIN, MAX, COUNT, etc). | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| AggregationFunction .AVG | Parameterized as Double because thats what JPA states that the return from AVG should be. | Class | org.hibernate.ejb.criteria.expression.function.AggregationFunction | Hibernate ORM |
| AggregationFunction .COUNT | Parameterized as Long because thats what JPA states that the return from COUNT should be. | Class | org.hibernate.ejb.criteria.expression.function.AggregationFunction | Hibernate ORM |
| AggregationFunction .GREATEST | Models the MAX function in terms of non-numeric expressions. | Class | org.hibernate.ejb.criteria.expression.function.AggregationFunction | Hibernate ORM |
| AggregationFunction .LEAST | Models the MIN function in terms of non-numeric expressions. | Class | org.hibernate.ejb.criteria.expression.function.AggregationFunction | Hibernate ORM |
| AggregationFunction .MAX | Parameterized as N extends Number because thats what JPA states that the return from MAX should be. | Class | org.hibernate.ejb.criteria.expression.function.AggregationFunction | Hibernate ORM |
| AggregationFunction .MIN | Parameterized as N extends Number because thats what JPA states that the return from MIN should be. | Class | org.hibernate.ejb.criteria.expression.function.AggregationFunction | Hibernate ORM |
| AggregationFunction .SUM | Parameterized as N extends Number because thats what JPA states that the return from SUM should be. | Class | org.hibernate.ejb.criteria.expression.function.AggregationFunction | Hibernate ORM |
| BasicFunctionExpression | Models the basic concept of a SQL function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| BasicPathUsageException | Represents an incorrect usage of a basic path. | Class | org.hibernate.ejb.criteria | Hibernate ORM |
| BetweenPredicate | Models a BETWEEN Predicate. | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| BinaryArithmeticOperation | Models standard arithmetc operations with two operands. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| BinaryArithmeticOperation .Operation | Class | org.hibernate.ejb.criteria.expression.BinaryArithmeticOperation | Hibernate ORM | |
| BinaryOperatorExpression | Contract for operators with two operands. | Interface | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| BooleanAssertionPredicate | Predicate to assert the explicit value of a boolean expression:x = truex = falsex See Also:Serialized Form | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| BooleanExpressionPredicate | Defines a Predicate used to wrap an Expression | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| BooleanStaticAssertionPredicate | Predicate used to assert a static boolean condition. | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| CastFunction | Models a CAST function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| CoalesceExpression | Models an ANSI SQL COALESCE expression. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| CollectionAttributeJoin | Class | org.hibernate.ejb.criteria.path | Hibernate ORM | |
| CollectionJoinImplementor | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| ComparisonPredicate | Models a basic relational comparison predicate. | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| ComparisonPredicate .ComparisonOperator | Defines the comparison operators. | Class | org.hibernate.ejb.criteria.predicate.ComparisonPredicate | Hibernate ORM |
| CompoundPredicate | A compound predicate is a grouping of other predicates in order to convert either a conjunction (logical AND) or a disjunction (logical OR). | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| CompoundSelectionImpl | The Hibernate implementation of the JPA CompoundSelectionSee Also:Serialized Form | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| ConcatExpression | A string concatenation. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| CriteriaBuilderImpl | Hibernate implementation of the JPA CriteriaBuilder contract. | Class | org.hibernate.ejb.criteria | Hibernate ORM |
| CriteriaQueryCompiler | Compiles a JPA criteria query into an executable TypedQuery. | Class | org.hibernate.ejb.criteria | Hibernate ORM |
| CriteriaQueryCompiler .ImplicitParameterBinding | Used to describe implicit (not defined in criteria query) parameters. | Interface | org.hibernate.ejb.criteria.CriteriaQueryCompiler | Hibernate ORM |
| CriteriaQueryCompiler .RenderedCriteriaQuery | Interface | org.hibernate.ejb.criteria.CriteriaQueryCompiler | Hibernate ORM | |
| CriteriaQueryCompiler .RenderingContext | Used to provide a context and services to the rendering. | Interface | org.hibernate.ejb.criteria.CriteriaQueryCompiler | Hibernate ORM |
| CriteriaQueryImpl | The Hibernate implementation of the JPA CriteriaQuery contract. | Class | org.hibernate.ejb.criteria | Hibernate ORM |
| CriteriaSubqueryImpl | The Hibernate implementation of the JPA Subquery contract. | Class | org.hibernate.ejb.criteria | Hibernate ORM |
| CurrentDateFunction | Models the ANSI SQL CURRENT_DATE function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| CurrentTimeFunction | Models the ANSI SQL CURRENT_TIME function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| CurrentTimestampFunction | Models the ANSI SQL CURRENT_TIMESTAMP function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| EntityTypeExpression | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM | |
| ExistsPredicate | Models an EXISTS() predicateSee Also:Serialized Form | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| ExplicitTruthValueCheck | ANSI-SQL defines TRUE, FALSE and UNKNOWN as truth values. | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| ExpressionImpl | Models an expression in the criteria query language. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| ExpressionImplementor | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| FromImplementor | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| FunctionExpression | Contract for expressions which model a SQL function call. | Interface | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| IllegalDereferenceException | Represents an illegal attempt to dereference from a path source which cannot be dereferenced. | Class | org.hibernate.ejb.criteria | Hibernate ORM |
| ImplicitNumericExpressionTypeDeterminer | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM | |
| InPredicate | Models an [NOT] IN restrictionSee Also:Serialized Form | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| IsEmptyPredicate | Models an IS [NOT] EMPTY restrictionSee Also:Serialized Form | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| JoinImplementor | Consolidates the Join and Fetch hierarchies since that is how we implement them. | Interface | org.hibernate.ejb.criteria | Hibernate ORM |
| LengthFunction | Models the ANSI SQL LENGTH function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| LikePredicate | Models a SQL LIKE expression. | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| ListAttributeJoin | Class | org.hibernate.ejb.criteria.path | Hibernate ORM | |
| ListIndexExpression | An expression for referring to the index of a list. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| ListJoinImplementor | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| LiteralExpression | Represents a literal expression. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| LocateFunction | Models the ANSI SQL LOCATE function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| LowerFunction | Models the ANSI SQL LOWER function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| MapAttributeJoin | Class | org.hibernate.ejb.criteria.path | Hibernate ORM | |
| MapEntryExpression | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM | |
| MapJoinImplementor | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| MapKeyHelpers | MapJoin. | Class | org.hibernate.ejb.criteria.path | Hibernate ORM |
| MapKeyHelpers .MapKeyAttribute | Defines an Attribute modelling of a map-key. | Class | org.hibernate.ejb.criteria.path.MapKeyHelpers | Hibernate ORM |
| MapKeyHelpers .MapKeyPath | Models a path to a map key. | Class | org.hibernate.ejb.criteria.path.MapKeyHelpers | Hibernate ORM |
| MapKeyHelpers .MapKeySource | Defines a Path for the map which can then be used to represent the source of the map key attribute. | Class | org.hibernate.ejb.criteria.path.MapKeyHelpers | Hibernate ORM |
| MemberOfPredicate | Models an [NOT] MEMBER OF restrictionSee Also:Serialized Form | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| NullifExpression | Models an ANSI SQL NULLIF expression. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| NullLiteralExpression | Represents a NULLliteral expression. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| NullnessPredicate | Defines a Predicate for checking the nullness state of an expression, aka an IS [NOT] NULL predicate. | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| OrderImpl | Represents an ORDER BY fragment. | Class | org.hibernate.ejb.criteria | Hibernate ORM |
| ParameterContainer | Contract for query components capable of eirther being a parameter or containing parameters. | Interface | org.hibernate.ejb.criteria | Hibernate ORM |
| ParameterContainer .Helper | Helper to deal with potential parameter container nodes. | Class | org.hibernate.ejb.criteria.ParameterContainer | Hibernate ORM |
| ParameterExpressionImpl | Defines a parameter specification, or the information about a parameter (where it occurs, what isSee Also:Serialized Form | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| ParameterizedFunctionExpression | Support for functions with parameters. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| ParameterRegistry | A registry for parameters. | Interface | org.hibernate.ejb.criteria | Hibernate ORM |
| PathImplementor | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| PathSource | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| PathTypeExpression | Used to construct the result of Path. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| PluralAttributeJoinSupport | Support for defining joins to plural attributes (JPA requires typing based on the specific collection type so we cannot really implement all support in a | Class | org.hibernate.ejb.criteria.path | Hibernate ORM |
| PluralAttributePath | Models a path for a PluralAttribute generally obtained from a Path. | Class | org.hibernate.ejb.criteria.path | Hibernate ORM |
| QueryStructure | Models basic query structure. | Class | org.hibernate.ejb.criteria | Hibernate ORM |
| Renderable | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| RootImpl | Class | org.hibernate.ejb.criteria.path | Hibernate ORM | |
| SearchedCaseExpression | Models what ANSI SQL terms a searched case expression. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| SelectionImpl | The Hibernate implementation of the JPA SelectionSee Also:Serialized Form | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| SelectionImplementor | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| SetAttributeJoin | Class | org.hibernate.ejb.criteria.path | Hibernate ORM | |
| SetJoinImplementor | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| SimpleCaseExpression | Models what ANSI SQL terms a simple case statement. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| SingularAttributeJoin | Class | org.hibernate.ejb.criteria.path | Hibernate ORM | |
| SingularAttributePath | Models a path for a SingularAttribute generally obtained from a Path. | Class | org.hibernate.ejb.criteria.path | Hibernate ORM |
| SizeOfCollectionExpression | Represents a size of expression in regards to a persistent collection; the implication is that of a subquery. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| SqrtFunction | Models the ANSI SQL SQRT function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| SubqueryComparisonModifierExpression | Represents a SubqueryComparisonModifierExpression. | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| SubqueryComparisonModifierExpression .Modifier | Class | org.hibernate.ejb.criteria.expression.SubqueryComparisonModifierExpression | Hibernate ORM | |
| SubstringFunction | Models the ANSI SQL SUBSTRING function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| TrimFunction | Models the ANSI SQL TRIM function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| TruthValue | enum TruthValueextends Enum | Class | org.hibernate.ejb.criteria.predicate | Hibernate ORM |
| TupleElementImplementor | Interface | org.hibernate.ejb.criteria | Hibernate ORM | |
| UnaryArithmeticOperation | Models unary arithmetic operation (unary plus and unary minus). | Class | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| UnaryArithmeticOperation .Operation | Class | org.hibernate.ejb.criteria.expression.UnaryArithmeticOperation | Hibernate ORM | |
| UnaryOperatorExpression | Contract for operators with a single operand. | Interface | org.hibernate.ejb.criteria.expression | Hibernate ORM |
| UpperFunction | Models the ANSI SQL UPPER function. | Class | org.hibernate.ejb.criteria.expression.function | Hibernate ORM |
| ValueHandlerFactory | Helper for generically dealing with literal values. | Class | org.hibernate.ejb.criteria | Hibernate ORM |
| ValueHandlerFactory .BaseValueHandler | See Also:Serialized FormConstructor SummaryValueHandlerFactory. | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM |
| ValueHandlerFactory .BigDecimalValueHandler | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM | |
| ValueHandlerFactory .BigIntegerValueHandler | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM | |
| ValueHandlerFactory .ByteValueHandler | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM | |
| ValueHandlerFactory .DoubleValueHandler | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM | |
| ValueHandlerFactory .FloatValueHandler | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM | |
| ValueHandlerFactory .IntegerValueHandler | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM | |
| ValueHandlerFactory .LongValueHandler | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM | |
| ValueHandlerFactory .NoOpValueHandler | See Also:Serialized FormConstructor SummaryValueHandlerFactory. | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM |
| ValueHandlerFactory .ShortValueHandler | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM | |
| ValueHandlerFactory .StringValueHandler | Class | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM | |
| ValueHandlerFactory .ValueHandler | Interface | org.hibernate.ejb.criteria.ValueHandlerFactory | Hibernate ORM | |