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

studio.utils.LineEnding Maven / Gradle / Ivy

Go to download

Studio for kdb+ is a rapid development environment for the ultra-fast database kdb+ from Kx Systems: http://www.kx.com.

There is a newer version: dz4.1
Show newest version
package studio.utils;

public enum LineEnding {
    Unix("Unix", "\n"),
    Windows("Windows", "\r\n"),
    MacOS9("MacOS 9", "\r");

    LineEnding(String description, String chars) {
        this.description = description;
        this.chars = chars;
    }

    private final String description;
    private final String chars;

    public String getDescription() {
        return description;
    }

    public String getChars() {
        return chars;
    }

    @Override
    public String toString() {
        return description;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy