| TokenType Enumeration |
This enumeration defines the different types of tokens found within
a HOCON (Human-Optimized Config Object Notation) configuration string.
Namespace:
Akka.Configuration.Hocon
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax Members
| Member name | Value | Description |
---|
| Comment | 0 |
This token type represents a comment.
|
| Key | 1 |
This token type represents the key portion of a key-value pair.
|
| LiteralValue | 2 |
This token type represents the value portion of a key-value pair.
|
| Assign | 3 |
This token type represents the assignment operator, = or : .
|
| ObjectStart | 4 |
This token type represents the beginning of an object, { .
|
| ObjectEnd | 5 |
This token type represents the end of an object, } .
|
| Dot | 6 |
This token type represents a namespace separator, . .
|
| EoF | 7 |
This token type represents the end of the configuration string.
|
| ArrayStart | 8 |
This token type represents the beginning of an array, [ .
|
| ArrayEnd | 9 |
This token type represents the end of an array, ] .
|
| Comma | 10 |
This token type represents the separator in an array, , .
|
| Substitute | 11 |
This token type represents a replacement variable, $foo .
|
| Include | 12 |
This token type represents an include statement.
|
See Also