Package openGql.grammar
Class UnsignedValueSpecification
- java.lang.Object
-
- openGql.grammar.UnsignedValueSpecification
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UnsignedValueSpecification>
- Direct Known Subclasses:
UnsignedValueSpecification.GeneralValueSpecification,UnsignedValueSpecification.UnsignedLiteral
public abstract class UnsignedValueSpecification extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<UnsignedValueSpecification>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUnsignedValueSpecification.GeneralValueSpecificationstatic interfaceUnsignedValueSpecification.PartialVisitor<R>Partial visitor overUnsignedValueSpecificationwith a defaultUnsignedValueSpecification.PartialVisitor.otherwise(openGql.grammar.UnsignedValueSpecification)branch.static classUnsignedValueSpecification.UnsignedLiteralstatic interfaceUnsignedValueSpecification.Visitor<R>Visitor overUnsignedValueSpecification.
-
Field Summary
Fields Modifier and Type Field Description static NameGENERAL_VALUE_SPECIFICATIONName of theopenGql.grammar.UnsignedValueSpecification.generalValueSpecificationfield.static NameTYPE_Name of theopenGql.grammar.UnsignedValueSpecificationtype.static NameUNSIGNED_LITERALName of theopenGql.grammar.UnsignedValueSpecification.unsignedLiteralfield.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(UnsignedValueSpecification.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.UnsignedValueSpecificationtype.
-
UNSIGNED_LITERAL
public static final Name UNSIGNED_LITERAL
Name of theopenGql.grammar.UnsignedValueSpecification.unsignedLiteralfield.
-
GENERAL_VALUE_SPECIFICATION
public static final Name GENERAL_VALUE_SPECIFICATION
Name of theopenGql.grammar.UnsignedValueSpecification.generalValueSpecificationfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(UnsignedValueSpecification.Visitor<R> visitor)
Dispatch tovisitor.
-
-