Package openGql.grammar
Class ImmaterialValueType
- java.lang.Object
-
- openGql.grammar.ImmaterialValueType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ImmaterialValueType>
- Direct Known Subclasses:
ImmaterialValueType.EmptyType,ImmaterialValueType.NullType
public abstract class ImmaterialValueType extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<ImmaterialValueType>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classImmaterialValueType.EmptyTypestatic classImmaterialValueType.NullTypestatic interfaceImmaterialValueType.PartialVisitor<R>Partial visitor overImmaterialValueTypewith a defaultImmaterialValueType.PartialVisitor.otherwise(openGql.grammar.ImmaterialValueType)branch.static interfaceImmaterialValueType.Visitor<R>Visitor overImmaterialValueType.
-
Field Summary
Fields Modifier and Type Field Description static NameEMPTY_TYPEName of theopenGql.grammar.ImmaterialValueType.emptyTypefield.static NameNULL_TYPEName of theopenGql.grammar.ImmaterialValueType.nullTypefield.static NameTYPE_Name of theopenGql.grammar.ImmaterialValueTypetype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(ImmaterialValueType.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.ImmaterialValueTypetype.
-
NULL_TYPE
public static final Name NULL_TYPE
Name of theopenGql.grammar.ImmaterialValueType.nullTypefield.
-
EMPTY_TYPE
public static final Name EMPTY_TYPE
Name of theopenGql.grammar.ImmaterialValueType.emptyTypefield.
-
-
Method Detail
-
accept
public abstract <R> R accept(ImmaterialValueType.Visitor<R> visitor)
Dispatch tovisitor.
-
-