Package openGql.grammar
Interface BinaryExactNumericType.PartialVisitor<R>
-
- All Superinterfaces:
BinaryExactNumericType.Visitor<R>
- Enclosing class:
- BinaryExactNumericType
public static interface BinaryExactNumericType.PartialVisitor<R> extends BinaryExactNumericType.Visitor<R>
Partial visitor overBinaryExactNumericTypewith a defaultotherwise(openGql.grammar.BinaryExactNumericType)branch.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rotherwise(BinaryExactNumericType instance)Default branch for unhandled cases.default Rvisit(BinaryExactNumericType.Signed instance)Visit theBinaryExactNumericType.Signedcase.default Rvisit(BinaryExactNumericType.Unsigned instance)Visit theBinaryExactNumericType.Unsignedcase.
-
-
-
Method Detail
-
otherwise
default R otherwise(BinaryExactNumericType instance)
Default branch for unhandled cases.
-
visit
default R visit(BinaryExactNumericType.Signed instance)
Visit theBinaryExactNumericType.Signedcase.- Specified by:
visitin interfaceBinaryExactNumericType.Visitor<R>
-
visit
default R visit(BinaryExactNumericType.Unsigned instance)
Visit theBinaryExactNumericType.Unsignedcase.- Specified by:
visitin interfaceBinaryExactNumericType.Visitor<R>
-
-