Package org.hibernate.grammars.ordering
Interface OrderingParserVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for 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
by
OrderingParser
.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byOrderingParser.collationSpecification()
.Visit a parse tree produced byOrderingParser.direction()
.Visit a parse tree produced byOrderingParser.dotIdentifier()
.Visit a parse tree produced by theDotIdentifierExpression
labeled alternative inOrderingParser.expression()
.Visit a parse tree produced byOrderingParser.function()
.Visit a parse tree produced byOrderingParser.functionArgument()
.Visit a parse tree produced byOrderingParser.functionArguments()
.Visit a parse tree produced by theFunctionExpression
labeled alternative inOrderingParser.expression()
.Visit a parse tree produced byOrderingParser.identifier()
.Visit a parse tree produced by theIdentifierExpression
labeled alternative inOrderingParser.expression()
.Visit a parse tree produced byOrderingParser.literal()
.Visit a parse tree produced byOrderingParser.nullsPrecedence()
.Visit a parse tree produced byOrderingParser.orderByFragment()
.Visit a parse tree produced byOrderingParser.packagedFunction()
.Visit a parse tree produced byOrderingParser.simpleFunction()
.Visit a parse tree produced byOrderingParser.sortSpecification()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitOrderByFragment
Visit a parse tree produced byOrderingParser.orderByFragment()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSortSpecification
Visit a parse tree produced byOrderingParser.sortSpecification()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFunctionExpression
Visit a parse tree produced by theFunctionExpression
labeled alternative inOrderingParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIdentifierExpression
Visit a parse tree produced by theIdentifierExpression
labeled alternative inOrderingParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDotIdentifierExpression
Visit a parse tree produced by theDotIdentifierExpression
labeled alternative inOrderingParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFunction
Visit a parse tree produced byOrderingParser.function()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSimpleFunction
Visit a parse tree produced byOrderingParser.simpleFunction()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPackagedFunction
Visit a parse tree produced byOrderingParser.packagedFunction()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFunctionArguments
Visit a parse tree produced byOrderingParser.functionArguments()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFunctionArgument
Visit a parse tree produced byOrderingParser.functionArgument()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteral
Visit a parse tree produced byOrderingParser.literal()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitCollationSpecification
Visit a parse tree produced byOrderingParser.collationSpecification()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDirection
Visit a parse tree produced byOrderingParser.direction()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNullsPrecedence
Visit a parse tree produced byOrderingParser.nullsPrecedence()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIdentifier
Visit a parse tree produced byOrderingParser.identifier()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDotIdentifier
Visit a parse tree produced byOrderingParser.dotIdentifier()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-