Package openGql.grammar
Interface SetOperatorType.Visitor<R>
-
- All Known Subinterfaces:
SetOperatorType.PartialVisitor<R>
- Enclosing class:
- SetOperatorType
public static interface SetOperatorType.Visitor<R>Visitor overSetOperatorType.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rvisit(SetOperatorType.Except instance)Visit theSetOperatorType.Exceptcase.Rvisit(SetOperatorType.Intersect instance)Visit theSetOperatorType.Intersectcase.Rvisit(SetOperatorType.Union instance)Visit theSetOperatorType.Unioncase.
-
-
-
Method Detail
-
visit
R visit(SetOperatorType.Union instance)
Visit theSetOperatorType.Unioncase.
-
visit
R visit(SetOperatorType.Except instance)
Visit theSetOperatorType.Exceptcase.
-
visit
R visit(SetOperatorType.Intersect instance)
Visit theSetOperatorType.Intersectcase.
-
-