If the output file already exists, should it be overwritten? If it is not provided, write operation will fail if the file already exists.
(boolean value)
| 592 | * If it is not provided, write operation will fail if the file already exists. |
| 593 | */ |
| 594 | public WriterOptions overwrite(boolean value) { |
| 595 | overwrite = value; |
| 596 | return this; |
| 597 | } |
| 598 | |
| 599 | /** |
| 600 | * Set the stripe size for the file. The writer stores the contents of the |
no outgoing calls