Package openGql.grammar
Interface NumericType.PartialVisitor<R>
-
- All Superinterfaces:
NumericType.Visitor<R>
- Enclosing class:
- NumericType
public static interface NumericType.PartialVisitor<R> extends NumericType.Visitor<R>
Partial visitor overNumericTypewith a defaultotherwise(openGql.grammar.NumericType)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(NumericType instance)Default branch for unhandled cases.default Rvisit(NumericType.Approximate instance)Visit theNumericType.Approximatecase.default Rvisit(NumericType.Exact instance)Visit theNumericType.Exactcase.
-
-
-
Method Detail
-
otherwise
default R otherwise(NumericType instance)
Default branch for unhandled cases.
-
visit
default R visit(NumericType.Exact instance)
Visit theNumericType.Exactcase.- Specified by:
visitin interfaceNumericType.Visitor<R>
-
visit
default R visit(NumericType.Approximate instance)
Visit theNumericType.Approximatecase.- Specified by:
visitin interfaceNumericType.Visitor<R>
-
-