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