Parses text as a sequence of Ion values. @param text must not be null . @return the list of values in text , not null .
(String text)
| 424 | * @return the list of values in <code>text</code>, not <code>null</code>. |
| 425 | */ |
| 426 | public IonDatagram values(String text) |
| 427 | throws Exception |
| 428 | { |
| 429 | IonLoader loader = system().newLoader(); |
| 430 | return loader.load(text); |
| 431 | } |
| 432 | |
| 433 | |
| 434 | /** |
no test coverage detected