< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Profile.java

Print this page

        

*** 38,50 **** * If you write code that depends on this, you do so at your own risk. * This code and its internal interfaces are subject to change or * deletion without notice.</b> */ public enum Profile { ! COMPACT1("compact1", 1, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10), ! COMPACT2("compact2", 2, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10), ! COMPACT3("compact3", 3, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10), DEFAULT { @Override public boolean isValid(Target t) { return true; --- 38,50 ---- * If you write code that depends on this, you do so at your own risk. * This code and its internal interfaces are subject to change or * deletion without notice.</b> */ public enum Profile { ! COMPACT1("compact1", 1, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10, Target.JDK1_11), ! COMPACT2("compact2", 2, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10, Target.JDK1_11), ! COMPACT3("compact3", 3, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10, Target.JDK1_11), DEFAULT { @Override public boolean isValid(Target t) { return true;
< prev index next >