Package openGql.grammar
Interface BooleanLiteral.Visitor<R>
-
- All Known Subinterfaces:
BooleanLiteral.PartialVisitor<R>
- Enclosing class:
- BooleanLiteral
public static interface BooleanLiteral.Visitor<R>Visitor overBooleanLiteral.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rvisit(BooleanLiteral.False instance)Visit theBooleanLiteral.Falsecase.Rvisit(BooleanLiteral.True instance)Visit theBooleanLiteral.Truecase.Rvisit(BooleanLiteral.Unknown instance)Visit theBooleanLiteral.Unknowncase.
-
-
-
Method Detail
-
visit
R visit(BooleanLiteral.True instance)
Visit theBooleanLiteral.Truecase.
-
visit
R visit(BooleanLiteral.False instance)
Visit theBooleanLiteral.Falsecase.
-
visit
R visit(BooleanLiteral.Unknown instance)
Visit theBooleanLiteral.Unknowncase.
-
-