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

bdsup2sub.utils.PlatformUtils Maven / Gradle / Ivy

The newest version!
package bdsup2sub.utils;

public class PlatformUtils {

    private static final String OS_NAME = System.getProperty("os.name");

    public static boolean isWindows() {
        return OS_NAME.toLowerCase().contains("windows");
    }

    public static boolean isMac() {
        return OS_NAME.toLowerCase().contains("mac");
    }

    public static boolean isLinux() {
        return OS_NAME.toLowerCase().contains("linux");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy