CharacterType enum

Inheritance
Available extensions

Values

n → const CharacterType

Digits (numeric characters 0 to 9 only)

const CharacterType("0123456789", r"^[0-9]+$")
a → const CharacterType

Upper case letters (alphabetic characters A-Z only)

const CharacterType("ABCDEFGHIJKLMNOPQRSTUVWXYZ", r"^[A-Z]+$")
c → const CharacterType

Upper case alphanumeric characters (A-Z, a-z and 0-9)

const CharacterType("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ", r"^[0-9A-Za-z]+$")
e → const CharacterType

Blank space

const CharacterType(" ", r"^ +$")

Properties

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

Methods

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

Constants

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