Uses of Interface
org.hibernate.query.criteria.JpaSimpleCase
Packages that use JpaSimpleCase
Package
Description
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
SPI for extending
HibernateCriteriaBuilder
with additional functionality by registering a Service
.This package defines a semantic model of HQL queries.
Nodes representing expressions in the SQM tree.
-
Uses of JpaSimpleCase in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return JpaSimpleCaseModifier and TypeMethodDescriptionJpaSimpleCase.otherwise
(Expression<? extends R> result) <C,
R> JpaSimpleCase<C, R> HibernateCriteriaBuilder.selectCase
(Expression<? extends C> expression) JpaSimpleCase.when
(C condition, Expression<? extends R> result) JpaSimpleCase.when
(Expression<? extends C> condition, Expression<? extends R> result) JpaSimpleCase.when
(Expression<? extends C> condition, R result) -
Uses of JpaSimpleCase in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi that return JpaSimpleCaseModifier and TypeMethodDescription<C,
R> JpaSimpleCase<C, R> HibernateCriteriaBuilderDelegate.selectCase
(Expression<? extends C> expression) -
Uses of JpaSimpleCase in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return JpaSimpleCaseModifier and TypeMethodDescription<C,
R> JpaSimpleCase<C, R> NodeBuilder.selectCase
(Expression<? extends C> expression) -
Uses of JpaSimpleCase in org.hibernate.query.sqm.tree.expression
Classes in org.hibernate.query.sqm.tree.expression that implement JpaSimpleCaseMethods in org.hibernate.query.sqm.tree.expression that return JpaSimpleCaseModifier and TypeMethodDescriptionSqmCaseSimple.otherwise
(Expression<? extends R> result) SqmCaseSimple.when
(Expression<? extends T> condition, Expression<? extends R> result) SqmCaseSimple.when
(Expression<? extends T> condition, R result) SqmCaseSimple.when
(T condition, Expression<? extends R> result)