Separator enum

The token used to indicate how to split string values.

Inheritance

Constructors

Separator(String token)
const

Values

comma → const Separator
const Separator(',')
colon → const Separator
const Separator(':')
doubleQuote → const Separator
const Separator('"')
empty → const Separator
const Separator('')
hyphen → const Separator
const Separator('-')
period → const Separator
const Separator('.')
semiColon → const Separator
const Separator(';')
singleQuote → const Separator
const Separator("'")
space → const Separator
const Separator(' ')
underscore → const Separator
const Separator('_')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
token String
The character representative of the separator.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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

Static Properties

all Map<String, Separator>
All the available separators.
final
tokens Set<String>
All the available tokens.
final

Constants

values → const List<Separator>
A constant List of the values in this enum, in order of their declaration.