Package openGql.grammar
Interface PathOrPaths.PartialVisitor<R>
-
- All Superinterfaces:
PathOrPaths.Visitor<R>
- Enclosing class:
- PathOrPaths
public static interface PathOrPaths.PartialVisitor<R> extends PathOrPaths.Visitor<R>
Partial visitor overPathOrPathswith a defaultotherwise(openGql.grammar.PathOrPaths)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(PathOrPaths instance)Default branch for unhandled cases.default Rvisit(PathOrPaths.Path instance)Visit thePathOrPaths.Pathcase.default Rvisit(PathOrPaths.Paths instance)Visit thePathOrPaths.Pathscase.
-
-
-
Method Detail
-
otherwise
default R otherwise(PathOrPaths instance)
Default branch for unhandled cases.
-
visit
default R visit(PathOrPaths.Path instance)
Visit thePathOrPaths.Pathcase.- Specified by:
visitin interfacePathOrPaths.Visitor<R>
-
visit
default R visit(PathOrPaths.Paths instance)
Visit thePathOrPaths.Pathscase.- Specified by:
visitin interfacePathOrPaths.Visitor<R>
-
-