Package openGql.grammar
Interface EdgeReferenceValueType.PartialVisitor<R>
-
- All Superinterfaces:
EdgeReferenceValueType.Visitor<R>
- Enclosing class:
- EdgeReferenceValueType
public static interface EdgeReferenceValueType.PartialVisitor<R> extends EdgeReferenceValueType.Visitor<R>
Partial visitor overEdgeReferenceValueTypewith a defaultotherwise(openGql.grammar.EdgeReferenceValueType)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(EdgeReferenceValueType instance)Default branch for unhandled cases.default Rvisit(EdgeReferenceValueType.Closed instance)Visit theEdgeReferenceValueType.Closedcase.default Rvisit(EdgeReferenceValueType.Open instance)Visit theEdgeReferenceValueType.Opencase.
-
-
-
Method Detail
-
otherwise
default R otherwise(EdgeReferenceValueType instance)
Default branch for unhandled cases.
-
visit
default R visit(EdgeReferenceValueType.Open instance)
Visit theEdgeReferenceValueType.Opencase.- Specified by:
visitin interfaceEdgeReferenceValueType.Visitor<R>
-
visit
default R visit(EdgeReferenceValueType.Closed instance)
Visit theEdgeReferenceValueType.Closedcase.- Specified by:
visitin interfaceEdgeReferenceValueType.Visitor<R>
-
-