Extract an ASTRING, starting at the current position and return as a String. An ASTRING can be a QuotedString, a Literal or an Atom (plus ']'). Any errors in parsing returns null ASTRING := QuotedString | Literal | 1 ASTRING_CHAR @return a String
()
| 434 | * @return a String |
| 435 | */ |
| 436 | public String readAtomString() { |
| 437 | return (String)parseString(true, true); |
| 438 | } |
| 439 | |
| 440 | /** |
| 441 | * Generic parsing routine that can parse out a Quoted-String, |
no test coverage detected