Java Code Examples for com.intellij.util.SystemProperties#getJavaVmVendor()

The following examples show how to use com.intellij.util.SystemProperties#getJavaVmVendor() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SystemInfo.java    From consulo with Apache License 2.0 4 votes vote down vote up
private static boolean isOracleJvm() {
  final String vendor = SystemProperties.getJavaVmVendor();
  return vendor != null && StringUtil.containsIgnoreCase(vendor, "Oracle");
}
 
Example 2
Source File: SystemInfo.java    From consulo with Apache License 2.0 4 votes vote down vote up
private static boolean isSunJvm() {
  final String vendor = SystemProperties.getJavaVmVendor();
  return vendor != null && StringUtil.containsIgnoreCase(vendor, "Sun") && StringUtil.containsIgnoreCase(vendor, "Microsystems");
}
 
Example 3
Source File: SystemInfo.java    From consulo with Apache License 2.0 4 votes vote down vote up
private static boolean isIbmJvm() {
  final String vendor = SystemProperties.getJavaVmVendor();
  return vendor != null && StringUtil.containsIgnoreCase(vendor, "IBM");
}
 
Example 4
Source File: SystemInfo.java    From consulo with Apache License 2.0 4 votes vote down vote up
private static boolean isAppleJvm() {
  final String vendor = SystemProperties.getJavaVmVendor();
  return vendor != null && StringUtil.containsIgnoreCase(vendor, "Apple");
}