Interface ProjectionSpec.PartialVisitor<R>
-
- All Superinterfaces:
ProjectionSpec.Visitor<R>
- Enclosing class:
- ProjectionSpec
public static interface ProjectionSpec.PartialVisitor<R> extends ProjectionSpec.Visitor<R>
Partial visitor overProjectionSpecwith a defaultotherwise(com.gdblab.pathAlgebra.expressions.ProjectionSpec)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(ProjectionSpec instance)Default branch for unhandled cases.default Rvisit(ProjectionSpec.All instance)Visit theProjectionSpec.Allcase.default Rvisit(ProjectionSpec.Limited instance)Visit theProjectionSpec.Limitedcase.
-
-
-
Method Detail
-
otherwise
default R otherwise(ProjectionSpec instance)
Default branch for unhandled cases.
-
visit
default R visit(ProjectionSpec.All instance)
Visit theProjectionSpec.Allcase.- Specified by:
visitin interfaceProjectionSpec.Visitor<R>
-
visit
default R visit(ProjectionSpec.Limited instance)
Visit theProjectionSpec.Limitedcase.- Specified by:
visitin interfaceProjectionSpec.Visitor<R>
-
-