All Downloads are FREE. Search and download functionalities are using the official Maven repository.

getl.data.sub.FileWriteOpts.groovy Maven / Gradle / Ivy

Go to download

GETL - based package in Groovy, which automates the work of loading and transforming data

There is a newer version: 4.18.9
Show newest version
package getl.data.sub

/**
 * File write options
 * @author Aleksey Konstantinov
 */
class FileWriteOpts {
    /** Number part */
    public Integer partNumber
    /** File name */
    public String fileName
    /** Temporary file name */
    public String tempFileName
    /** Count write rows */
    public Long countRows = 0
    /** Append to exist file */
    public Boolean append
    /** Delete file is empty */
    public Boolean deleteOnEmpty
    /** Code page file */
    public String encode
    /** File is saved */
    public Boolean readyFile = false
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy