MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / is64Bit

Method is64Bit

ij/src/main/java/ij/IJ.java:1307–1311  ·  view source on GitHub ↗

Returns true if ImageJ is running a 64-bit version of Java.

()

Source from the content-addressed store, hash-verified

1305
1306 /** Returns true if ImageJ is running a 64-bit version of Java. */
1307 public static boolean is64Bit() {
1308 if (osarch==null)
1309 osarch = System.getProperty("os.arch");
1310 return osarch!=null && osarch.indexOf("64")!=-1;
1311 }
1312
1313 /** Displays an error message and returns true if the
1314 ImageJ version is less than the one specified. */

Callers 7

versionMethod · 0.95
runJavaScriptMethod · 0.95
runMethod · 0.95
runMethod · 0.95
evaluateJavaScriptMethod · 0.95
showMessageMethod · 0.95

Calls 2

getPropertyMethod · 0.45
indexOfMethod · 0.45

Tested by

no test coverage detected