src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Profile.java
changeset 50892 a5557f24b4d4
parent 48343 d4329843abf4
child 53023 6879069d9d94
equal deleted inserted replaced
50891:9948ea5ea1af 50892:a5557f24b4d4
     1 /*
     1 /*
     2  * Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    38  *  If you write code that depends on this, you do so at your own risk.
    38  *  If you write code that depends on this, you do so at your own risk.
    39  *  This code and its internal interfaces are subject to change or
    39  *  This code and its internal interfaces are subject to change or
    40  *  deletion without notice.</b>
    40  *  deletion without notice.</b>
    41  */
    41  */
    42 public enum Profile {
    42 public enum Profile {
    43     COMPACT1("compact1", 1, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10, Target.JDK1_11),
    43     COMPACT1("compact1", 1, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10, Target.JDK1_11, Target.JDK1_12),
    44     COMPACT2("compact2", 2, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10, Target.JDK1_11),
    44     COMPACT2("compact2", 2, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10, Target.JDK1_11, Target.JDK1_12),
    45     COMPACT3("compact3", 3, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10, Target.JDK1_11),
    45     COMPACT3("compact3", 3, Target.JDK1_8, Target.JDK1_9, Target.JDK1_10, Target.JDK1_11, Target.JDK1_12),
    46 
    46 
    47     DEFAULT {
    47     DEFAULT {
    48         @Override
    48         @Override
    49         public boolean isValid(Target t) {
    49         public boolean isValid(Target t) {
    50             return true;
    50             return true;