Class SqmWindowFrame
- java.lang.Object
-
- org.hibernate.query.sqm.tree.AbstractSqmNode
-
- org.hibernate.query.sqm.tree.expression.SqmWindowFrame
-
- All Implemented Interfaces:
Serializable
,JpaCriteriaNode
,JpaWindowFrame
,SqmNode
@Incubating public class SqmWindowFrame extends AbstractSqmNode implements JpaWindowFrame
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SqmWindowFrame(NodeBuilder nodeBuilder, FrameKind kind)
SqmWindowFrame(NodeBuilder nodeBuilder, FrameKind kind, SqmExpression<?> expression)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SqmWindowFrame
copy(SqmCopyContext context)
SqmExpression<?>
getExpression()
Get theExpression
of this window frame.FrameKind
getKind()
Get theFrameKind
of this window frame.-
Methods inherited from class org.hibernate.query.sqm.tree.AbstractSqmNode
nodeBuilder
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.query.sqm.tree.SqmNode
asLoggableText
-
-
-
-
Constructor Detail
-
SqmWindowFrame
public SqmWindowFrame(NodeBuilder nodeBuilder, FrameKind kind)
-
SqmWindowFrame
public SqmWindowFrame(NodeBuilder nodeBuilder, FrameKind kind, SqmExpression<?> expression)
-
-
Method Detail
-
getKind
public FrameKind getKind()
Description copied from interface:JpaWindowFrame
Get theFrameKind
of this window frame.- Specified by:
getKind
in interfaceJpaWindowFrame
- Returns:
- the window frame kind
-
getExpression
public SqmExpression<?> getExpression()
Description copied from interface:JpaWindowFrame
Get theExpression
of this window frame.- Specified by:
getExpression
in interfaceJpaWindowFrame
- Returns:
- the window frame expression
-
copy
public SqmWindowFrame copy(SqmCopyContext context)
-
-