Interface PathPropertyRef.PartialVisitor<R>
-
- All Superinterfaces:
PathPropertyRef.Visitor<R>
- Enclosing class:
- PathPropertyRef
public static interface PathPropertyRef.PartialVisitor<R> extends PathPropertyRef.Visitor<R>
Partial visitor overPathPropertyRefwith a defaultotherwise(com.gdblab.pathAlgebra.expressions.PathPropertyRef)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(PathPropertyRef instance)Default branch for unhandled cases.default Rvisit(PathPropertyRef.EndNode instance)Visit thePathPropertyRef.EndNodecase.default Rvisit(PathPropertyRef.Length instance)Visit thePathPropertyRef.Lengthcase.default Rvisit(PathPropertyRef.StartNode instance)Visit thePathPropertyRef.StartNodecase.
-
-
-
Method Detail
-
otherwise
default R otherwise(PathPropertyRef instance)
Default branch for unhandled cases.
-
visit
default R visit(PathPropertyRef.Length instance)
Visit thePathPropertyRef.Lengthcase.- Specified by:
visitin interfacePathPropertyRef.Visitor<R>
-
visit
default R visit(PathPropertyRef.StartNode instance)
Visit thePathPropertyRef.StartNodecase.- Specified by:
visitin interfacePathPropertyRef.Visitor<R>
-
visit
default R visit(PathPropertyRef.EndNode instance)
Visit thePathPropertyRef.EndNodecase.- Specified by:
visitin interfacePathPropertyRef.Visitor<R>
-
-