Package openGql.grammar
Interface NonNegativeIntegerSpecification.PartialVisitor<R>
-
- All Superinterfaces:
NonNegativeIntegerSpecification.Visitor<R>
- Enclosing class:
- NonNegativeIntegerSpecification
public static interface NonNegativeIntegerSpecification.PartialVisitor<R> extends NonNegativeIntegerSpecification.Visitor<R>
Partial visitor overNonNegativeIntegerSpecificationwith a defaultotherwise(openGql.grammar.NonNegativeIntegerSpecification)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(NonNegativeIntegerSpecification instance)Default branch for unhandled cases.default Rvisit(NonNegativeIntegerSpecification.DynamicParameterSpecification instance)Visit theNonNegativeIntegerSpecification.DynamicParameterSpecificationcase.default Rvisit(NonNegativeIntegerSpecification.UnsignedInteger instance)Visit theNonNegativeIntegerSpecification.UnsignedIntegercase.
-
-
-
Method Detail
-
otherwise
default R otherwise(NonNegativeIntegerSpecification instance)
Default branch for unhandled cases.
-
visit
default R visit(NonNegativeIntegerSpecification.UnsignedInteger instance)
Visit theNonNegativeIntegerSpecification.UnsignedIntegercase.- Specified by:
visitin interfaceNonNegativeIntegerSpecification.Visitor<R>
-
visit
default R visit(NonNegativeIntegerSpecification.DynamicParameterSpecification instance)
Visit theNonNegativeIntegerSpecification.DynamicParameterSpecificationcase.- Specified by:
visitin interfaceNonNegativeIntegerSpecification.Visitor<R>
-
-