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

com.github.timo_reymann.csv_parser.util.Platform Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package com.github.timo_reymann.csv_parser.util;

/**
 * Platform specific functionality
 *
 * @author Timo Reymann
 * @since 20.12.17
 */
public class Platform {
    /**
     * Get new line control codes for platform
     *
     * @return Control code for new line
     */
    public static String getLineSeperator() {
        return System.getProperty("line.separator");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy