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