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

ua.net.nlp.other.clean.CleanRequest.groovy Maven / Gradle / Ivy

The newest version!
package ua.net.nlp.other.clean

import groovy.transform.CompileStatic

@CompileStatic
class CleanRequest {
    public String text
    public File file
    public File outFile
    public boolean dosNl
    
    String getLineBreak() { dosNl ? ".\r\n" : ".\n" }
    CleanRequest forText(String text) {
        new CleanRequest(text: text, file: file, outFile: outFile, dosNl: dosNl)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy