コード例 #1
0
 /** Return the set of unsupported JVM features that improve the estimation. */
 public static EnumSet<JvmFeature> getUnsupportedFeatures() {
   EnumSet<JvmFeature> unsupported = EnumSet.allOf(JvmFeature.class);
   unsupported.removeAll(supportedFeatures);
   return unsupported;
 }