Package openGql.grammar
Class SchemaReference
- java.lang.Object
-
- openGql.grammar.SchemaReference
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SchemaReference>
- Direct Known Subclasses:
SchemaReference.AbsoluteReference,SchemaReference.ParameterSpecification,SchemaReference.RelativeReference
public abstract class SchemaReference extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<SchemaReference>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSchemaReference.AbsoluteReferencestatic classSchemaReference.ParameterSpecificationstatic interfaceSchemaReference.PartialVisitor<R>Partial visitor overSchemaReferencewith a defaultSchemaReference.PartialVisitor.otherwise(openGql.grammar.SchemaReference)branch.static classSchemaReference.RelativeReferencestatic interfaceSchemaReference.Visitor<R>Visitor overSchemaReference.
-
Field Summary
Fields Modifier and Type Field Description static NameABSOLUTE_REFERENCEName of theopenGql.grammar.SchemaReference.absoluteReferencefield.static NamePARAMETER_SPECIFICATIONName of theopenGql.grammar.SchemaReference.parameterSpecificationfield.static NameRELATIVE_REFERENCEName of theopenGql.grammar.SchemaReference.relativeReferencefield.static NameTYPE_Name of theopenGql.grammar.SchemaReferencetype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(SchemaReference.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.SchemaReferencetype.
-
ABSOLUTE_REFERENCE
public static final Name ABSOLUTE_REFERENCE
Name of theopenGql.grammar.SchemaReference.absoluteReferencefield.
-
RELATIVE_REFERENCE
public static final Name RELATIVE_REFERENCE
Name of theopenGql.grammar.SchemaReference.relativeReferencefield.
-
PARAMETER_SPECIFICATION
public static final Name PARAMETER_SPECIFICATION
Name of theopenGql.grammar.SchemaReference.parameterSpecificationfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(SchemaReference.Visitor<R> visitor)
Dispatch tovisitor.
-
-