Package openGql.grammar
Class ExactNumericLiteral
- java.lang.Object
-
- openGql.grammar.ExactNumericLiteral
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ExactNumericLiteral>
- Direct Known Subclasses:
ExactNumericLiteral.CommonWithoutSuffix,ExactNumericLiteral.CommonWithSuffix,ExactNumericLiteral.IntegerWithSuffix,ExactNumericLiteral.ScientificWithSuffix,ExactNumericLiteral.UnsignedInteger
public abstract class ExactNumericLiteral extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<ExactNumericLiteral>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExactNumericLiteral.CommonWithoutSuffixstatic classExactNumericLiteral.CommonWithSuffixstatic classExactNumericLiteral.IntegerWithSuffixstatic interfaceExactNumericLiteral.PartialVisitor<R>Partial visitor overExactNumericLiteralwith a defaultExactNumericLiteral.PartialVisitor.otherwise(openGql.grammar.ExactNumericLiteral)branch.static classExactNumericLiteral.ScientificWithSuffixstatic classExactNumericLiteral.UnsignedIntegerstatic interfaceExactNumericLiteral.Visitor<R>Visitor overExactNumericLiteral.
-
Field Summary
Fields Modifier and Type Field Description static NameCOMMON_WITH_SUFFIXName of theopenGql.grammar.ExactNumericLiteral.commonWithSuffixfield.static NameCOMMON_WITHOUT_SUFFIXName of theopenGql.grammar.ExactNumericLiteral.commonWithoutSuffixfield.static NameINTEGER_WITH_SUFFIXName of theopenGql.grammar.ExactNumericLiteral.integerWithSuffixfield.static NameSCIENTIFIC_WITH_SUFFIXName of theopenGql.grammar.ExactNumericLiteral.scientificWithSuffixfield.static NameTYPE_Name of theopenGql.grammar.ExactNumericLiteraltype.static NameUNSIGNED_INTEGERName of theopenGql.grammar.ExactNumericLiteral.unsignedIntegerfield.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(ExactNumericLiteral.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.ExactNumericLiteraltype.
-
SCIENTIFIC_WITH_SUFFIX
public static final Name SCIENTIFIC_WITH_SUFFIX
Name of theopenGql.grammar.ExactNumericLiteral.scientificWithSuffixfield.
-
COMMON_WITH_SUFFIX
public static final Name COMMON_WITH_SUFFIX
Name of theopenGql.grammar.ExactNumericLiteral.commonWithSuffixfield.
-
COMMON_WITHOUT_SUFFIX
public static final Name COMMON_WITHOUT_SUFFIX
Name of theopenGql.grammar.ExactNumericLiteral.commonWithoutSuffixfield.
-
INTEGER_WITH_SUFFIX
public static final Name INTEGER_WITH_SUFFIX
Name of theopenGql.grammar.ExactNumericLiteral.integerWithSuffixfield.
-
UNSIGNED_INTEGER
public static final Name UNSIGNED_INTEGER
Name of theopenGql.grammar.ExactNumericLiteral.unsignedIntegerfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(ExactNumericLiteral.Visitor<R> visitor)
Dispatch tovisitor.
-
-