Class Duration
- java.lang.Object
-
- org.hibernate.sql.ast.tree.expression.Duration
-
- All Implemented Interfaces:
DomainResultProducer,SqlSelectionProducer,Expression,SqlAstNode
public class Duration extends Object implements Expression, DomainResultProducer
A duration expressed in terms of a given temporal unit. Represents a conversion of a scalar value to a Duration, by providing a duration unit.- See Also:
which does the opposite
-
-
Constructor Summary
Constructors Constructor Description Duration(Expression magnitude, TemporalUnit unit, BasicValuedMapping type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(SqlAstWalker walker)voidapplySqlSelections(DomainResultCreationState creationState)Used when this producer is a selection in a sub-query.DomainResultcreateDomainResult(String resultVariable, DomainResultCreationState creationState)Produce the domain queryBasicValuedMappinggetExpressionType()The type for this expressionExpressiongetMagnitude()TemporalUnitgetUnit()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.sql.ast.tree.expression.Expression
createDomainResultSqlSelection, createDomainResultSqlSelection, createSqlSelection, createSqlSelection, getColumnReference
-
-
-
-
Constructor Detail
-
Duration
public Duration(Expression magnitude, TemporalUnit unit, BasicValuedMapping type)
-
-
Method Detail
-
getUnit
public TemporalUnit getUnit()
-
getMagnitude
public Expression getMagnitude()
-
accept
public void accept(SqlAstWalker walker)
- Specified by:
acceptin interfaceSqlAstNode
-
createDomainResult
public DomainResult createDomainResult(String resultVariable, DomainResultCreationState creationState)
Description copied from interface:DomainResultProducerProduce the domain query- Specified by:
createDomainResultin interfaceDomainResultProducer
-
applySqlSelections
public void applySqlSelections(DomainResultCreationState creationState)
Description copied from interface:DomainResultProducerUsed when this producer is a selection in a sub-query. The DomainResult is only needed for root query of a SELECT statement. This default impl assumes this producer is a true (Sql)Expression- Specified by:
applySqlSelectionsin interfaceDomainResultProducer
-
getExpressionType
public BasicValuedMapping getExpressionType()
Description copied from interface:ExpressionThe type for this expression- Specified by:
getExpressionTypein interfaceExpression
-
-