Generates the complete SMAP string representation of this stratum. @return the SMAP string @throws IllegalStateException if the output file name has not been set
()
| 326 | * @throws IllegalStateException if the output file name has not been set |
| 327 | */ |
| 328 | public String getSmapString() { |
| 329 | |
| 330 | if (outputFileName == null) { |
| 331 | throw new IllegalStateException(); |
| 332 | } |
| 333 | |
| 334 | return getSmapStringInternal(); |
| 335 | } |
| 336 | |
| 337 | |
| 338 | private String getSmapStringInternal() { |