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