TomlValueVisitorMixin<R> mixin

Mixin that adds a visitValue method to classes implementing TomlValueVisitor that automatically selects the appropriate visitor method using TomlValue.acceptValueVisitor.

This class is usually used when the visitor also implements the TomlVisitor interface to provide a default implementation for TomlVisitor.visitValue.

Implemented types
Mixin Applications

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
visitArray(TomlArray array) → R
Visits the given array value.
inherited
visitBoolean(TomlBoolean boolean) → R
Visits the given boolean value.
inherited
visitDateTime(TomlDateTime dateTime) → R
Visits the given date or time value.
inherited
visitFloat(TomlFloat float) → R
Visits the given floating point number.
inherited
visitInlineTable(TomlInlineTable inlineTable) → R
Visits the given inline table.
inherited
visitInteger(TomlInteger integer) → R
Visits the given integer.
inherited
visitString(TomlString string) → R
Visits the given string value.
inherited
visitValue(TomlValue value) → R
Visits the given value.

Operators

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