Enum TokenType
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.dll
Syntax
public enum TokenType
Fields
| Name | Description |
|---|---|
| ArrayEnd | This token type represents the end of an array, |
| ArrayStart | This token type represents the beginning of an array, |
| Assign | This token type represents the assignment operator, |
| Comma | This token type represents the separator in an array, |
| Comment | This token type represents a comment. |
| Dot | This token type represents a namespace separator, |
| EoF | This token type represents the end of the configuration string. |
| Include | This token type represents an include statement. |
| Key | This token type represents the key portion of a key-value pair. |
| LiteralValue | This token type represents the value portion of a key-value pair. |
| ObjectEnd | This token type represents the end of an object, |
| ObjectStart | This token type represents the beginning of an object, |
| Substitute | This token type represents a replacement variable, |
Edit this page