Package org.hibernate.sql.ordering.antlr
Interface TranslationContext
-
public interface TranslationContextContract for contextual information required to perform translation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColumnMappergetColumnMapper()Retrieves the column mapper for this context.DialectgetDialect()Retrieves the dialect for this context.SessionFactoryImplementorgetSessionFactory()Retrieves the session factory for this context.SQLFunctionRegistrygetSqlFunctionRegistry()Retrieves the SQL function registry for this context.
-
-
-
Method Detail
-
getSessionFactory
SessionFactoryImplementor getSessionFactory()
Retrieves the session factory for this context.- Returns:
- The session factory
-
getDialect
Dialect getDialect()
Retrieves the dialect for this context.- Returns:
- The dialect
-
getSqlFunctionRegistry
SQLFunctionRegistry getSqlFunctionRegistry()
Retrieves the SQL function registry for this context.- Returns:
- The SQL function registry.
-
getColumnMapper
ColumnMapper getColumnMapper()
Retrieves the column mapper for this context.- Returns:
- The column mapper
-
-