Uses of Class
org.hibernate.query.sqm.tree.expression.SqmLiteral
-
Packages that use SqmLiteral Package Description org.hibernate.query.hql.internal Implementation of the SPIs for HQL support.org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.spi SPI-level SQM contractsorg.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.tree.cte Nodes representing common table expressions (CTE) in the SQM tree.org.hibernate.query.sqm.tree.expression Nodes representing expressions in the SQM tree. -
-
Uses of SqmLiteral in org.hibernate.query.hql.internal
Methods in org.hibernate.query.hql.internal that return SqmLiteral Modifier and Type Method Description SqmLiteral<Character>
SemanticQueryBuilder. visitPadCharacter(HqlParser.PadCharacterContext ctx)
SqmLiteral<Character>
SemanticQueryBuilder. visitTrimCharacter(HqlParser.TrimCharacterContext ctx)
-
Uses of SqmLiteral in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm with parameters of type SqmLiteral Modifier and Type Method Description T
SemanticQueryWalker. visitLiteral(SqmLiteral<?> literal)
-
Uses of SqmLiteral in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal that return SqmLiteral Modifier and Type Method Description <T> SqmLiteral<T>
SqmCriteriaNodeBuilder. literal(T value)
<T> SqmLiteral<T>
SqmCriteriaNodeBuilder. literal(T value, SqmExpression<? extends T> typeInferenceSource)
Methods in org.hibernate.query.sqm.internal with parameters of type SqmLiteral Modifier and Type Method Description Object
SqmTreePrinter. visitLiteral(SqmLiteral literal)
-
Uses of SqmLiteral in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi with parameters of type SqmLiteral Modifier and Type Method Description Object
BaseSemanticQueryWalker. visitLiteral(SqmLiteral<?> literal)
-
Uses of SqmLiteral in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql with parameters of type SqmLiteral Modifier and Type Method Description Expression
BaseSqmToSqlAstConverter. visitLiteral(SqmLiteral<?> literal)
-
Uses of SqmLiteral in org.hibernate.query.sqm.tree.cte
Methods in org.hibernate.query.sqm.tree.cte that return SqmLiteral Modifier and Type Method Description SqmLiteral<Object>
SqmCteStatement. getCycleLiteral()
SqmLiteral<Object>
SqmCteStatement. getNoCycleLiteral()
-
Uses of SqmLiteral in org.hibernate.query.sqm.tree.expression
Subclasses of SqmLiteral in org.hibernate.query.sqm.tree.expression Modifier and Type Class Description class
SqmCollation
class
SqmEnumLiteral<E extends Enum<E>>
Specialized SQM literal defined by an enum reference.class
SqmFormat
Effectively a query-literal but we want to handle it specially in the SQM to SQL AST conversionclass
SqmHqlNumericLiteral<N extends Number>
Used to model numeric literals found in HQL queries.class
SqmLiteralNull<T>
Methods in org.hibernate.query.sqm.tree.expression that return SqmLiteral Modifier and Type Method Description SqmLiteral<T>
SqmLiteral. copy(SqmCopyContext context)
static SqmLiteral<Date>
SqmExpressionHelper. dateLiteralFrom(String literalText, SqmCreationState creationState)
static SqmLiteral<Integer>
SqmExpressionHelper. integerLiteral(int value, QueryEngine queryEngine)
static SqmLiteral<Integer>
SqmExpressionHelper. integerLiteral(String literalText, SqmCreationState creationState)
static SqmLiteral<Integer>
SqmExpressionHelper. integerLiteral(String literalText, QueryEngine queryEngine)
static SqmLiteral<Time>
SqmExpressionHelper. timeLiteralFrom(String literalText, SqmCreationState creationState)
static SqmLiteral<Timestamp>
SqmExpressionHelper. timestampLiteralFrom(String literalText, SqmCreationState creationState)
-