Class UnparsedNumericLiteral<N extends Number>
java.lang.Object
org.hibernate.sql.ast.tree.expression.UnparsedNumericLiteral<N>
- All Implemented Interfaces:
DomainResultProducer<N>
,SqlSelectionProducer
,Expression
,Literal
,SqlAstNode
,JdbcParameterBinder
public class UnparsedNumericLiteral<N extends Number>
extends Object
implements Literal, DomainResultProducer<N>
A numeric literal coming from an HQL query, which needs special handling
- See Also:
-
Field Summary
Fields inherited from interface org.hibernate.sql.exec.spi.JdbcParameterBinder
NOOP
-
Constructor Summary
ConstructorsConstructorDescriptionUnparsedNumericLiteral
(String literalValue, NumericTypeCategory typeCategory, JdbcMapping jdbcMapping) -
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(SqlAstWalker sqlTreeWalker) void
applySqlSelections
(DomainResultCreationState creationState) Used when this producer is a selection in a sub-query.void
bindParameterValue
(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext) Bind the appropriate value in the JDBC statementcreateDomainResult
(String resultVariable, DomainResultCreationState creationState) Produce the domain queryThe type for this expressionMethods 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, createSqlSelection, getColumnReference
-
Constructor Details
-
UnparsedNumericLiteral
public UnparsedNumericLiteral(String literalValue, NumericTypeCategory typeCategory, JdbcMapping jdbcMapping)
-
-
Method Details
-
getLiteralValue
- Specified by:
getLiteralValue
in interfaceLiteral
-
bindParameterValue
public void bindParameterValue(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext) throws SQLException Description copied from interface:JdbcParameterBinder
Bind the appropriate value in the JDBC statement- Specified by:
bindParameterValue
in interfaceJdbcParameterBinder
- Throws:
SQLException
-
getUnparsedLiteralValue
-
getJdbcMapping
- Specified by:
getJdbcMapping
in interfaceLiteral
-
getExpressionType
Description copied from interface:Expression
The type for this expression- Specified by:
getExpressionType
in interfaceExpression
-
createDomainResult
public DomainResult<N> createDomainResult(String resultVariable, DomainResultCreationState creationState) Description copied from interface:DomainResultProducer
Produce the domain query- Specified by:
createDomainResult
in interfaceDomainResultProducer<N extends Number>
-
applySqlSelections
Description copied from interface:DomainResultProducer
Used 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:
applySqlSelections
in interfaceDomainResultProducer<N extends Number>
-
accept
- Specified by:
accept
in interfaceSqlAstNode
-