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

org.sitoolkit.wt.gui.infra.SystemUtils Maven / Gradle / Ivy

There is a newer version: 2.3
Show newest version
package org.sitoolkit.wt.gui.infra;

public class SystemUtils {

    private static boolean windows;
    private static boolean osx;

    static {
        // OS判定方法はorg.apache.commons.lang3.SystemUtilsを参照
        String osName = System.getProperty("os.name");
        windows = osName.startsWith("Windows");
        osx = osName.startsWith("Mac");
    }

    public static boolean isWindows() {
        return windows;
    }

    public static boolean isOsX() {
        return osx;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy