langtools/src/share/classes/com/sun/tools/javac/jvm/Profile.java
changeset 22151 cb8daa93eeb1
parent 15724 3063fb01c8a1
child 22163 3651128c74eb
equal deleted inserted replaced
22150:af8945f58fc6 22151:cb8daa93eeb1
    37  *  If you write code that depends on this, you do so at your own risk.
    37  *  If you write code that depends on this, you do so at your own risk.
    38  *  This code and its internal interfaces are subject to change or
    38  *  This code and its internal interfaces are subject to change or
    39  *  deletion without notice.</b>
    39  *  deletion without notice.</b>
    40  */
    40  */
    41 public enum Profile {
    41 public enum Profile {
    42     COMPACT1("compact1", 1, Target.JDK1_8),
    42     COMPACT1("compact1", 1, Target.JDK1_8, Target.JDK1_9),
    43     COMPACT2("compact2", 2, Target.JDK1_8),
    43     COMPACT2("compact2", 2, Target.JDK1_8, Target.JDK1_9),
    44     COMPACT3("compact3", 3, Target.JDK1_8),
    44     COMPACT3("compact3", 3, Target.JDK1_8, Target.JDK1_9),
    45 
    45 
    46     DEFAULT {
    46     DEFAULT {
    47         @Override
    47         @Override
    48         public boolean isValid(Target t) {
    48         public boolean isValid(Target t) {
    49             return true;
    49             return true;