Package org.hibernate.query.criteria
Interface JpaFunctionFrom<O,T>
- All Superinterfaces:
Expression<T>
,FetchParent<O,
,T> From<O,
,T> JpaCriteriaNode
,JpaExpression<T>
,JpaFetchParent<O,
,T> JpaFrom<O,
,T> JpaPath<T>
,JpaSelection<T>
,JpaTupleElement<T>
,Path<T>
,Selection<T>
,Serializable
,TupleElement<T>
- All Known Subinterfaces:
JpaFunctionJoin<E>
,JpaFunctionRoot<E>
- All Known Implementing Classes:
SqmFunctionJoin
,SqmFunctionRoot
- Since:
- 7.0
-
Method Summary
Modifier and TypeMethodDescriptionThe function for this from node.index()
The expression referring to an iteration variable, indexing the rows produced by the function.Methods inherited from interface jakarta.persistence.criteria.From
getJoins, isCorrelated
Methods inherited from interface org.hibernate.query.criteria.JpaExpression
as, asBigDecimal, asBigInteger, asDouble, asFloat, asInteger, asLong, asString, cast, equalTo, equalTo, in, in, in, in, isNotNull, isNull, notEqualTo, notEqualTo
Methods inherited from interface org.hibernate.query.criteria.JpaFetchParent
fetch, fetch, fetch, fetch, fetch, fetch, getFetches
Methods inherited from interface org.hibernate.query.criteria.JpaFrom
crossJoin, crossJoin, getCorrelationParent, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, joinArray, joinArray, joinArray, joinArray, joinArrayCollection, joinArrayCollection, joinArrayCollection, joinArrayCollection, joinCollection, joinCollection, joinLateral, joinLateral, joinLateral, joinLateral, joinLateral, joinList, joinList, joinMap, joinMap, joinSet, joinSet, treatAs, treatAs
Methods inherited from interface org.hibernate.query.criteria.JpaPath
get, get, get, get, getLhs, getNavigablePath, getParentPath, type
Methods inherited from interface org.hibernate.query.criteria.JpaSelection
alias, getCompoundSelectionItems, getSelectionItems
Methods inherited from interface org.hibernate.query.criteria.JpaTupleElement
getJavaType, getJavaTypeDescriptor, getJavaTypeName, isEnum
Methods inherited from interface jakarta.persistence.criteria.Selection
isCompoundSelection
Methods inherited from interface jakarta.persistence.TupleElement
getAlias
-
Method Details
-
getFunction
JpaSetReturningFunction<T> getFunction()The function for this from node. -
index
JpaExpression<Long> index()The expression referring to an iteration variable, indexing the rows produced by the function. This is the equivalent of the SQLwith ordinality
clause.
-