Package openGql.grammar
Class UnsignedInteger
- java.lang.Object
-
- openGql.grammar.UnsignedInteger
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UnsignedInteger>
- Direct Known Subclasses:
UnsignedInteger.Binary,UnsignedInteger.Decimal,UnsignedInteger.Hexadecimal,UnsignedInteger.Octal
public abstract class UnsignedInteger extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<UnsignedInteger>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUnsignedInteger.Binarystatic classUnsignedInteger.Decimalstatic classUnsignedInteger.Hexadecimalstatic classUnsignedInteger.Octalstatic interfaceUnsignedInteger.PartialVisitor<R>Partial visitor overUnsignedIntegerwith a defaultUnsignedInteger.PartialVisitor.otherwise(openGql.grammar.UnsignedInteger)branch.static interfaceUnsignedInteger.Visitor<R>Visitor overUnsignedInteger.
-
Field Summary
Fields Modifier and Type Field Description static NameBINARYName of theopenGql.grammar.UnsignedInteger.binaryfield.static NameDECIMALName of theopenGql.grammar.UnsignedInteger.decimalfield.static NameHEXADECIMALName of theopenGql.grammar.UnsignedInteger.hexadecimalfield.static NameOCTALName of theopenGql.grammar.UnsignedInteger.octalfield.static NameTYPE_Name of theopenGql.grammar.UnsignedIntegertype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(UnsignedInteger.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.UnsignedIntegertype.
-
DECIMAL
public static final Name DECIMAL
Name of theopenGql.grammar.UnsignedInteger.decimalfield.
-
HEXADECIMAL
public static final Name HEXADECIMAL
Name of theopenGql.grammar.UnsignedInteger.hexadecimalfield.
-
OCTAL
public static final Name OCTAL
Name of theopenGql.grammar.UnsignedInteger.octalfield.
-
BINARY
public static final Name BINARY
Name of theopenGql.grammar.UnsignedInteger.binaryfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(UnsignedInteger.Visitor<R> visitor)
Dispatch tovisitor.
-
-