站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 3.2.4 正式版 API 英文文档

Uses of Interface org.hibernate.hql.antlr.HqlSqlTokenTypes (Hibernate API Documentation) - Hibernate 3.2.4 正式版 API 英文文档


Uses of Interface
org.hibernate.hql.antlr.HqlSqlTokenTypes

Packages that use HqlSqlTokenTypes
org.hibernate.hql.antlr A special package for ANTLR-generated parser classes. 
org.hibernate.hql.ast An ANTLR-based parser for Hibernate Query Language. 
org.hibernate.hql.ast.tree   
org.hibernate.hql.ast.util   
 

Uses of HqlSqlTokenTypes in org.hibernate.hql.antlr
 

Classes in org.hibernate.hql.antlr that implement HqlSqlTokenTypes
 class HqlSqlBaseWalker
          Hibernate Query Language to SQL Tree Transform.
This is a tree grammar that transforms an HQL AST into a intermediate SQL AST with bindings to Hibernate interfaces (Queryable, etc.).
 

Uses of HqlSqlTokenTypes in org.hibernate.hql.ast
 

Classes in org.hibernate.hql.ast that implement HqlSqlTokenTypes
 class HqlSqlWalker
          Implements methods used by the HQL->SQL tree transform grammar (a.k.a.
 class SqlASTFactory
          Custom AST factory the intermediate tree that causes ANTLR to create specialized AST nodes, given the AST node type (from HqlSqlTokenTypes).
 

Uses of HqlSqlTokenTypes in org.hibernate.hql.ast.tree
 

Classes in org.hibernate.hql.ast.tree that implement HqlSqlTokenTypes
 class BooleanLiteralNode
          Represents a boolean literal within a query.
 class FromClause
          Represents the 'FROM' part of a query or subquery, containing all mapped class references.
 class LiteralNode
          Represents a literal.
 class OrderByClause
          Implementation of OrderByClause.
 

Uses of HqlSqlTokenTypes in org.hibernate.hql.ast.util
 

Classes in org.hibernate.hql.ast.util that implement HqlSqlTokenTypes
 class LiteralProcessor
          A delegate that handles literals and constants for HqlSqlWalker, performing the token replacement functions and classifying literals.
 class SyntheticAndFactory
          Creates synthetic and nodes based on the where fragment part of a JoinSequence.