Write out given string as an Atom. Note that an Atom can contain only certain US-ASCII characters. No validation is done on the characters in the string. @param s String @return this
(String s)
| 196 | * @return this |
| 197 | */ |
| 198 | public Argument writeAtom(String s) { |
| 199 | items.add(new Atom(s)); |
| 200 | return this; |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Write out number. |
no test coverage detected