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

com.araguacaima.commons.utils.OSValidator Maven / Gradle / Ivy

package com.araguacaima.commons.utils;

public class OSValidator {

    private static String OS = System.getProperty("os.name").toLowerCase();

    public static boolean isWindows() {

        return (OS.indexOf("win") >= 0);

    }

    public static boolean isMac() {

        return (OS.indexOf("mac") >= 0);

    }

    public static boolean isUnix() {

        return (OS.indexOf("nix") >= 0 || OS.indexOf("nux") >= 0 || OS.indexOf("aix") > 0);

    }

    public static boolean isSolaris() {

        return (OS.indexOf("sunos") >= 0);

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy