This method checks whether JVM vendor is IBM @return true if IBM JVM is being used false otherwise
()
| 91 | * false otherwise |
| 92 | */ |
| 93 | public static boolean isVendorIBM() { |
| 94 | return System.getProperty("java.vendor").contains("IBM"); |
| 95 | } |
| 96 | |
| 97 | public static boolean is64bitJVM() { |
| 98 | String arch = System.getProperties().getProperty("sun.arch.data.model", |