Package openGql.grammar
Interface BooleanLiteral.PartialVisitor<R>
-
- All Superinterfaces:
BooleanLiteral.Visitor<R>
- Enclosing class:
- BooleanLiteral
public static interface BooleanLiteral.PartialVisitor<R> extends BooleanLiteral.Visitor<R>
Partial visitor overBooleanLiteralwith a defaultotherwise(openGql.grammar.BooleanLiteral)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(BooleanLiteral instance)Default branch for unhandled cases.default Rvisit(BooleanLiteral.False instance)Visit theBooleanLiteral.Falsecase.default Rvisit(BooleanLiteral.True instance)Visit theBooleanLiteral.Truecase.default Rvisit(BooleanLiteral.Unknown instance)Visit theBooleanLiteral.Unknowncase.
-
-
-
Method Detail
-
otherwise
default R otherwise(BooleanLiteral instance)
Default branch for unhandled cases.
-
visit
default R visit(BooleanLiteral.True instance)
Visit theBooleanLiteral.Truecase.- Specified by:
visitin interfaceBooleanLiteral.Visitor<R>
-
visit
default R visit(BooleanLiteral.False instance)
Visit theBooleanLiteral.Falsecase.- Specified by:
visitin interfaceBooleanLiteral.Visitor<R>
-
visit
default R visit(BooleanLiteral.Unknown instance)
Visit theBooleanLiteral.Unknowncase.- Specified by:
visitin interfaceBooleanLiteral.Visitor<R>
-
-