Package org.hibernate.grammars.ordering
Interface OrderingParserVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
OrderingParserBaseVisitor,ParseTreeVisitor
public interface OrderingParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced byOrderingParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitOrderByFragment
T visitOrderByFragment(OrderingParser.OrderByFragmentContext ctx)
Visit a parse tree produced byOrderingParser.orderByFragment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSortSpecification
T visitSortSpecification(OrderingParser.SortSpecificationContext ctx)
Visit a parse tree produced byOrderingParser.sortSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionExpression
T visitFunctionExpression(OrderingParser.FunctionExpressionContext ctx)
Visit a parse tree produced by theFunctionExpressionlabeled alternative inOrderingParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifierExpression
T visitIdentifierExpression(OrderingParser.IdentifierExpressionContext ctx)
Visit a parse tree produced by theIdentifierExpressionlabeled alternative inOrderingParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDotIdentifierExpression
T visitDotIdentifierExpression(OrderingParser.DotIdentifierExpressionContext ctx)
Visit a parse tree produced by theDotIdentifierExpressionlabeled alternative inOrderingParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunction
T visitFunction(OrderingParser.FunctionContext ctx)
Visit a parse tree produced byOrderingParser.function().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleFunction
T visitSimpleFunction(OrderingParser.SimpleFunctionContext ctx)
Visit a parse tree produced byOrderingParser.simpleFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPackagedFunction
T visitPackagedFunction(OrderingParser.PackagedFunctionContext ctx)
Visit a parse tree produced byOrderingParser.packagedFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionArguments
T visitFunctionArguments(OrderingParser.FunctionArgumentsContext ctx)
Visit a parse tree produced byOrderingParser.functionArguments().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionArgument
T visitFunctionArgument(OrderingParser.FunctionArgumentContext ctx)
Visit a parse tree produced byOrderingParser.functionArgument().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteral
T visitLiteral(OrderingParser.LiteralContext ctx)
Visit a parse tree produced byOrderingParser.literal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollationSpecification
T visitCollationSpecification(OrderingParser.CollationSpecificationContext ctx)
Visit a parse tree produced byOrderingParser.collationSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDirection
T visitDirection(OrderingParser.DirectionContext ctx)
Visit a parse tree produced byOrderingParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullsPrecedence
T visitNullsPrecedence(OrderingParser.NullsPrecedenceContext ctx)
Visit a parse tree produced byOrderingParser.nullsPrecedence().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifier
T visitIdentifier(OrderingParser.IdentifierContext ctx)
Visit a parse tree produced byOrderingParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDotIdentifier
T visitDotIdentifier(OrderingParser.DotIdentifierContext ctx)
Visit a parse tree produced byOrderingParser.dotIdentifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-