Package org.hibernate.sql.ordering.antlr
Interface OrderByTranslation
-
- All Known Implementing Classes:
OrderByFragmentTranslator.StandardOrderByTranslationImpl
public interface OrderByTranslation
Represents the result of an order-by translation byOrderByFragmentTranslator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
injectAliases(OrderByAliasResolver aliasResolver)
Inject table aliases into the translated fragment to properly qualify column references, using the given 'aliasResolver' to determine the the proper table alias to use for each column reference.
-
-
-
Method Detail
-
injectAliases
java.lang.String injectAliases(OrderByAliasResolver aliasResolver)
Inject table aliases into the translated fragment to properly qualify column references, using the given 'aliasResolver' to determine the the proper table alias to use for each column reference.- Parameters:
aliasResolver
- The strategy to resolver the proper table alias to use per column- Returns:
- The fully translated and replaced fragment.
-
-