Value | Meaning |
---|---|
None | None. If this ever gets returned by the ArgPullParser, it's an error. |
Text | Plain text. Note that these values usually do have some kind of meaning (e.g. the value of a named argument) but it's too inaccurate for the parser to determine their meanings. So it's up to whatever is using the parser. |
ShortHandArgument | The name of a short hand argument ('-h', '-c', etc.) without the leading '-'. |
LongHandArgument | The name of a long hand argument ('--help', '--config', etc.) without the leading '--'. |
EOF | End of file/input. |
What type of data an ArgToken stores.