Package openGql.grammar
Class TemporalLiteral
- java.lang.Object
-
- openGql.grammar.TemporalLiteral
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TemporalLiteral>
- Direct Known Subclasses:
TemporalLiteral.Date,TemporalLiteral.Datetime,TemporalLiteral.Time
public abstract class TemporalLiteral extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<TemporalLiteral>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTemporalLiteral.Datestatic classTemporalLiteral.Datetimestatic interfaceTemporalLiteral.PartialVisitor<R>Partial visitor overTemporalLiteralwith a defaultTemporalLiteral.PartialVisitor.otherwise(openGql.grammar.TemporalLiteral)branch.static classTemporalLiteral.Timestatic interfaceTemporalLiteral.Visitor<R>Visitor overTemporalLiteral.
-
Field Summary
Fields Modifier and Type Field Description static NameDATEName of theopenGql.grammar.TemporalLiteral.datefield.static NameDATETIMEName of theopenGql.grammar.TemporalLiteral.datetimefield.static NameTIMEName of theopenGql.grammar.TemporalLiteral.timefield.static NameTYPE_Name of theopenGql.grammar.TemporalLiteraltype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(TemporalLiteral.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.TemporalLiteraltype.
-
DATE
public static final Name DATE
Name of theopenGql.grammar.TemporalLiteral.datefield.
-
TIME
public static final Name TIME
Name of theopenGql.grammar.TemporalLiteral.timefield.
-
DATETIME
public static final Name DATETIME
Name of theopenGql.grammar.TemporalLiteral.datetimefield.
-
-
Method Detail
-
accept
public abstract <R> R accept(TemporalLiteral.Visitor<R> visitor)
Dispatch tovisitor.
-
-