enum class Alphabet
An Alphabet represents a named collection of symbols.
description - the description of the alphabet
symbols - the symbols in the alphabet
|
The lowercase English alphabet. |
|
|
The digits 0 through 9. |
|
|
The hexadecimal digits 0 through f. |
|
|
A minus ( |
|
|
An underscore ( |
|
|
A whitespace ( |
|
|
A collection of special characters. |
|
|
A collection of brackets and parentheses. |
val description: String
the description of the alphabet |
|
val symbols: String
the symbols in the alphabet |
fun toString(): String
Returns the |