Write out given byte[] as a Literal. @param b byte[] to write out @return this
(byte[] b)
| 164 | * @return this |
| 165 | */ |
| 166 | public Argument writeBytes(byte[] b) { |
| 167 | items.add(b); |
| 168 | return this; |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Write out given ByteArrayOutputStream as a Literal. |
no test coverage detected