TomlDateTime class abstract

Base class of AST nodes that represents TOML date, time and date-time values.

date-time      = offset-date-time
               / local-date-time
               / local-date
               / local-time
Inheritance
Implementers

Constructors

TomlDateTime()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type TomlType
The type of the TOML value represented by this AST node.
no setterinherited

Methods

acceptDateTimeVisitor<T>(TomlDateTimeVisitor<T> visitor) → T
Invokes the correct visit* method for this date or time value of the given visitor.
acceptValueVisitor<T>(TomlValueVisitor<T> visitor) → T
Invokes the correct visit* method for this value of the given visitor.
override
acceptVisitor<T>(TomlVisitor<T> visitor) → T
Invokes the correct visit* method for this value of the given visitor.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

parser → Parser<TomlDateTime>
Parser for a TOML date, time or date-time value.
final

Static Methods

parse(String input) TomlDateTime
Parses the given string as a TOML date, time or date-time value.
override