Package openGql.grammar
Interface SetOperatorType.PartialVisitor<R>
-
- All Superinterfaces:
SetOperatorType.Visitor<R>
- Enclosing class:
- SetOperatorType
public static interface SetOperatorType.PartialVisitor<R> extends SetOperatorType.Visitor<R>
Partial visitor overSetOperatorTypewith a defaultotherwise(openGql.grammar.SetOperatorType)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(SetOperatorType instance)Default branch for unhandled cases.default Rvisit(SetOperatorType.Except instance)Visit theSetOperatorType.Exceptcase.default Rvisit(SetOperatorType.Intersect instance)Visit theSetOperatorType.Intersectcase.default Rvisit(SetOperatorType.Union instance)Visit theSetOperatorType.Unioncase.
-
-
-
Method Detail
-
otherwise
default R otherwise(SetOperatorType instance)
Default branch for unhandled cases.
-
visit
default R visit(SetOperatorType.Union instance)
Visit theSetOperatorType.Unioncase.- Specified by:
visitin interfaceSetOperatorType.Visitor<R>
-
visit
default R visit(SetOperatorType.Except instance)
Visit theSetOperatorType.Exceptcase.- Specified by:
visitin interfaceSetOperatorType.Visitor<R>
-
visit
default R visit(SetOperatorType.Intersect instance)
Visit theSetOperatorType.Intersectcase.- Specified by:
visitin interfaceSetOperatorType.Visitor<R>
-
-