Package openGql.grammar
Class BooleanLiteral
- java.lang.Object
-
- openGql.grammar.BooleanLiteral
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BooleanLiteral>
- Direct Known Subclasses:
BooleanLiteral.False,BooleanLiteral.True,BooleanLiteral.Unknown
public abstract class BooleanLiteral extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<BooleanLiteral>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBooleanLiteral.Falsestatic interfaceBooleanLiteral.PartialVisitor<R>Partial visitor overBooleanLiteralwith a defaultBooleanLiteral.PartialVisitor.otherwise(openGql.grammar.BooleanLiteral)branch.static classBooleanLiteral.Truestatic classBooleanLiteral.Unknownstatic interfaceBooleanLiteral.Visitor<R>Visitor overBooleanLiteral.
-
Field Summary
Fields Modifier and Type Field Description static NameFALSEName of theopenGql.grammar.BooleanLiteral.falsefield.static NameTRUEName of theopenGql.grammar.BooleanLiteral.truefield.static NameTYPE_Name of theopenGql.grammar.BooleanLiteraltype.static NameUNKNOWNName of theopenGql.grammar.BooleanLiteral.unknownfield.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(BooleanLiteral.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.BooleanLiteraltype.
-
TRUE
public static final Name TRUE
Name of theopenGql.grammar.BooleanLiteral.truefield.
-
FALSE
public static final Name FALSE
Name of theopenGql.grammar.BooleanLiteral.falsefield.
-
UNKNOWN
public static final Name UNKNOWN
Name of theopenGql.grammar.BooleanLiteral.unknownfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(BooleanLiteral.Visitor<R> visitor)
Dispatch tovisitor.
-
-