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

net.roydesign.mac.SystemAnalyzer Maven / Gradle / Ivy

Go to download

MRJ Adapter is a wrapper around built in Java Virtual Machine APIs provided by Apple.

The newest version!
package net.roydesign.mac;

public final class SystemAnalyzer {

    private SystemAnalyzer() {
        // class doesn't contain any fields
    }

    public static boolean isMacOSX() {
        String osName = java.lang.System.getProperty("os.name");
        return "Mac OS X".equals(osName);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy