Package openGql.grammar
Interface CaseOperand.PartialVisitor<R>
-
- All Superinterfaces:
CaseOperand.Visitor<R>
- Enclosing class:
- CaseOperand
public static interface CaseOperand.PartialVisitor<R> extends CaseOperand.Visitor<R>
Partial visitor overCaseOperandwith a defaultotherwise(openGql.grammar.CaseOperand)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(CaseOperand instance)Default branch for unhandled cases.default Rvisit(CaseOperand.ElementReference instance)Visit theCaseOperand.ElementReferencecase.default Rvisit(CaseOperand.ValueExpression instance)Visit theCaseOperand.ValueExpressioncase.
-
-
-
Method Detail
-
otherwise
default R otherwise(CaseOperand instance)
Default branch for unhandled cases.
-
visit
default R visit(CaseOperand.ValueExpression instance)
Visit theCaseOperand.ValueExpressioncase.- Specified by:
visitin interfaceCaseOperand.Visitor<R>
-
visit
default R visit(CaseOperand.ElementReference instance)
Visit theCaseOperand.ElementReferencecase.- Specified by:
visitin interfaceCaseOperand.Visitor<R>
-
-