Package openGql.grammar
Interface SelectStatementBody.PartialVisitor<R>
-
- All Superinterfaces:
SelectStatementBody.Visitor<R>
- Enclosing class:
- SelectStatementBody
public static interface SelectStatementBody.PartialVisitor<R> extends SelectStatementBody.Visitor<R>
Partial visitor overSelectStatementBodywith a defaultotherwise(openGql.grammar.SelectStatementBody)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(SelectStatementBody instance)Default branch for unhandled cases.default Rvisit(SelectStatementBody.GraphMatchList instance)Visit theSelectStatementBody.GraphMatchListcase.default Rvisit(SelectStatementBody.QuerySpecification instance)Visit theSelectStatementBody.QuerySpecificationcase.
-
-
-
Method Detail
-
otherwise
default R otherwise(SelectStatementBody instance)
Default branch for unhandled cases.
-
visit
default R visit(SelectStatementBody.GraphMatchList instance)
Visit theSelectStatementBody.GraphMatchListcase.- Specified by:
visitin interfaceSelectStatementBody.Visitor<R>
-
visit
default R visit(SelectStatementBody.QuerySpecification instance)
Visit theSelectStatementBody.QuerySpecificationcase.- Specified by:
visitin interfaceSelectStatementBody.Visitor<R>
-
-