![JAR search and dependency download from the Maven repository](/logo.png)
net.roydesign.mac.SystemAnalyzer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mrjadapter Show documentation
Show all versions of mrjadapter Show documentation
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