src/java.compiler/share/classes/javax/lang/model/SourceVersion.java
author darcy
Mon, 10 Jun 2019 15:53:35 -0700
changeset 55318 040e1c6dab96
parent 55306 ea43db53de91
child 55382 30b1b7b4dd86
permissions -rw-r--r--
8225532: Update source enums to describe 12 and 13 language features Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
54271
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
     2
 * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package javax.lang.model;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.util.Collections;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.util.Set;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import java.util.HashSet;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 * Source versions of the Java™ programming language.
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 *
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    35
 * See the appropriate edition of
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    36
 * <cite>The Java&trade; Language Specification</cite>
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    37
 * for information about a particular source version.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 * <p>Note that additional source version constants will be added to
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * model future releases of the language.
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 * @author Joseph D. Darcy
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 * @author Scott Seligman
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 * @author Peter von der Ah&eacute;
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 * @since 1.6
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
public enum SourceVersion {
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    /*
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 10180
diff changeset
    49
     * Summary of language evolution
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
     * 1.1: nested classes
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
     * 1.2: strictfp
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
     * 1.3: no changes
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
     * 1.4: assert
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
     * 1.5: annotations, generics, autoboxing, var-args...
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
     * 1.6: no changes
18660
d8332e6f4fab 8019308: Add descriptions of Java SE 7 and 8 language changes to SourceVersion
darcy
parents: 15385
diff changeset
    56
     * 1.7: diamond syntax, try-with-resources, etc.
d8332e6f4fab 8019308: Add descriptions of Java SE 7 and 8 language changes to SourceVersion
darcy
parents: 15385
diff changeset
    57
     * 1.8: lambda expressions and default methods
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
    58
     *   9: modules, small cleanups to 1.7 and 1.8 changes
48329
984c4b99afc9 8193489: Add information about local variable type inference to SourceVersion.RELEASE_10
darcy
parents: 47475
diff changeset
    59
     *  10: local-variable type inference (var)
51198
979e4708da65 8208201: Update SourceVersion.RELEASE_11 docs to mention var for lambda param
darcy
parents: 50892
diff changeset
    60
     *  11: local-variable syntax for lambda parameters
55318
040e1c6dab96 8225532: Update source enums to describe 12 and 13 language features
darcy
parents: 55306
diff changeset
    61
     *  12: no changes (switch expressions were in preview)
040e1c6dab96 8225532: Update source enums to describe 12 and 13 language features
darcy
parents: 55306
diff changeset
    62
     *  13: no changes (switch expressions and text blocks in preview)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
     * The original version.
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
     *
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    68
     * The language described in
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    69
     * <cite>The Java&trade; Language Specification, First Edition</cite>.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    RELEASE_0,
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
     * The version recognized by the Java Platform 1.1.
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     *
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    76
     * The language is {@code RELEASE_0} augmented with nested classes as described in the 1.1 update to
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    77
     * <cite>The Java&trade; Language Specification, First Edition</cite>.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    RELEASE_1,
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
     * The version recognized by the Java 2 Platform, Standard Edition,
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     * v 1.2.
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     *
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    85
     * The language described in
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    86
     * <cite>The Java&trade; Language Specification,
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    87
     * Second Edition</cite>, which includes the {@code
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
     * strictfp} modifier.
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
    RELEASE_2,
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
     * The version recognized by the Java 2 Platform, Standard Edition,
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     * v 1.3.
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
     * No major changes from {@code RELEASE_2}.
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    RELEASE_3,
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
     * The version recognized by the Java 2 Platform, Standard Edition,
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
     * v 1.4.
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     * Added a simple assertion facility.
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
    RELEASE_4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
     * The version recognized by the Java 2 Platform, Standard
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
     * Edition 5.0.
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
     *
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
   112
     * The language described in
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
   113
     * <cite>The Java&trade; Language Specification,
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
   114
     * Third Edition</cite>.  First release to support
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     * generics, annotations, autoboxing, var-args, enhanced {@code
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
     * for} loop, and hexadecimal floating-point literals.
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    RELEASE_5,
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
     * The version recognized by the Java Platform, Standard Edition
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     * 6.
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
     * No major changes from {@code RELEASE_5}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    RELEASE_6,
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
     * The version recognized by the Java Platform, Standard Edition
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
     * 7.
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
     *
18660
d8332e6f4fab 8019308: Add descriptions of Java SE 7 and 8 language changes to SourceVersion
darcy
parents: 15385
diff changeset
   132
     * Additions in this release include, diamond syntax for
d8332e6f4fab 8019308: Add descriptions of Java SE 7 and 8 language changes to SourceVersion
darcy
parents: 15385
diff changeset
   133
     * constructors, {@code try}-with-resources, strings in switch,
d8332e6f4fab 8019308: Add descriptions of Java SE 7 and 8 language changes to SourceVersion
darcy
parents: 15385
diff changeset
   134
     * binary literals, and multi-catch.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     * @since 1.7
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     */
10180
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   137
    RELEASE_7,
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   138
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   139
    /**
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   140
     * The version recognized by the Java Platform, Standard Edition
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   141
     * 8.
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   142
     *
18660
d8332e6f4fab 8019308: Add descriptions of Java SE 7 and 8 language changes to SourceVersion
darcy
parents: 15385
diff changeset
   143
     * Additions in this release include lambda expressions and default methods.
10180
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   144
     * @since 1.8
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   145
     */
22169
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   146
    RELEASE_8,
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   147
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   148
    /**
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   149
     * The version recognized by the Java Platform, Standard Edition
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   150
     * 9.
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   151
     *
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   152
     * Additions in this release include modules and removal of a
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   153
     * single underscore from the set of legal identifier names.
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   154
     *
34912
954fa9df99c7 8146572: Update "@since 1.9" to "@since 9" to match java.version.specification [langtools]
jjg
parents: 34072
diff changeset
   155
     * @since 9
22169
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   156
     */
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   157
     RELEASE_9,
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   158
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   159
    /**
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   160
     * The version recognized by the Java Platform, Standard Edition
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   161
     * 10.
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   162
     *
48329
984c4b99afc9 8193489: Add information about local variable type inference to SourceVersion.RELEASE_10
darcy
parents: 47475
diff changeset
   163
     * Additions in this release include local-variable type inference
984c4b99afc9 8193489: Add information about local variable type inference to SourceVersion.RELEASE_10
darcy
parents: 47475
diff changeset
   164
     * ({@code var}).
984c4b99afc9 8193489: Add information about local variable type inference to SourceVersion.RELEASE_10
darcy
parents: 47475
diff changeset
   165
     *
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   166
     * @since 10
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   167
     */
48343
d4329843abf4 8173382: Add -source 11 and -target 11 to javac
darcy
parents: 48329
diff changeset
   168
     RELEASE_10,
d4329843abf4 8173382: Add -source 11 and -target 11 to javac
darcy
parents: 48329
diff changeset
   169
d4329843abf4 8173382: Add -source 11 and -target 11 to javac
darcy
parents: 48329
diff changeset
   170
    /**
d4329843abf4 8173382: Add -source 11 and -target 11 to javac
darcy
parents: 48329
diff changeset
   171
     * The version recognized by the Java Platform, Standard Edition
d4329843abf4 8173382: Add -source 11 and -target 11 to javac
darcy
parents: 48329
diff changeset
   172
     * 11.
d4329843abf4 8173382: Add -source 11 and -target 11 to javac
darcy
parents: 48329
diff changeset
   173
     *
51198
979e4708da65 8208201: Update SourceVersion.RELEASE_11 docs to mention var for lambda param
darcy
parents: 50892
diff changeset
   174
     * Additions in this release include local-variable syntax for
979e4708da65 8208201: Update SourceVersion.RELEASE_11 docs to mention var for lambda param
darcy
parents: 50892
diff changeset
   175
     * lambda parameters.
979e4708da65 8208201: Update SourceVersion.RELEASE_11 docs to mention var for lambda param
darcy
parents: 50892
diff changeset
   176
     *
48343
d4329843abf4 8173382: Add -source 11 and -target 11 to javac
darcy
parents: 48329
diff changeset
   177
     * @since 11
d4329843abf4 8173382: Add -source 11 and -target 11 to javac
darcy
parents: 48329
diff changeset
   178
     */
50892
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48538
diff changeset
   179
     RELEASE_11,
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48538
diff changeset
   180
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48538
diff changeset
   181
    /**
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48538
diff changeset
   182
     * The version recognized by the Java Platform, Standard Edition
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48538
diff changeset
   183
     * 12.
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48538
diff changeset
   184
     *
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48538
diff changeset
   185
     * @since 12
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48538
diff changeset
   186
     */
53023
6879069d9d94 8205626: Start of release updates for JDK 13
darcy
parents: 51198
diff changeset
   187
     RELEASE_12,
6879069d9d94 8205626: Start of release updates for JDK 13
darcy
parents: 51198
diff changeset
   188
6879069d9d94 8205626: Start of release updates for JDK 13
darcy
parents: 51198
diff changeset
   189
    /**
6879069d9d94 8205626: Start of release updates for JDK 13
darcy
parents: 51198
diff changeset
   190
     * The version recognized by the Java Platform, Standard Edition
6879069d9d94 8205626: Start of release updates for JDK 13
darcy
parents: 51198
diff changeset
   191
     * 13.
6879069d9d94 8205626: Start of release updates for JDK 13
darcy
parents: 51198
diff changeset
   192
     *
6879069d9d94 8205626: Start of release updates for JDK 13
darcy
parents: 51198
diff changeset
   193
     * @since 13
6879069d9d94 8205626: Start of release updates for JDK 13
darcy
parents: 51198
diff changeset
   194
     */
6879069d9d94 8205626: Start of release updates for JDK 13
darcy
parents: 51198
diff changeset
   195
     RELEASE_13;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
    // Note that when adding constants for newer releases, the
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
    // behavior of latest() and latestSupported() must be updated too.
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
     * Returns the latest source version that can be modeled.
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     * @return the latest source version that can be modeled
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
    public static SourceVersion latest() {
53023
6879069d9d94 8205626: Start of release updates for JDK 13
darcy
parents: 51198
diff changeset
   206
        return RELEASE_13;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
    private static final SourceVersion latestSupported = getLatestSupported();
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
54271
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   211
    /*
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   212
     * The integer version to enum constant mapping implemented by
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   213
     * this method assumes the JEP 322: "Time-Based Release
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   214
     * Versioning" scheme is in effect. This scheme began in JDK
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   215
     * 10. If the JDK versioning scheme is revised, this method may
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   216
     * need to be updated accordingly.
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   217
     */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
    private static SourceVersion getLatestSupported() {
54271
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   219
        int intVersion = Runtime.version().feature();
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   220
        return (intVersion >= 11) ?
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   221
            valueOf("RELEASE_" + Math.min(13, intVersion)):
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   222
            RELEASE_10;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
     * Returns the latest source version fully supported by the
54271
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   227
     * current execution environment.  {@code RELEASE_9} or later must
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     * be returned.
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
     *
54271
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   230
     * @apiNote This method is included alongside {@link latest} to
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   231
     * allow identification of situations where the language model API
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   232
     * is running on a platform version different than the latest
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   233
     * version modeled by the API. One way that sort of situation can
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   234
     * occur is if an IDE or similar tool is using the API to model
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   235
     * source version <i>N</i> while running on platform version
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   236
     * (<i>N</i>&nbsp;-&nbsp;1). Running in this configuration is
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   237
     * supported by the API. Running an API on platform versions
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   238
     * earlier than (<i>N</i>&nbsp;-&nbsp;1) or later than <i>N</i>
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   239
     * may or may not work as an implementation detail. If an
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   240
     * annotation processor was generating code to run under the
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   241
     * current execution environment, the processor should only use
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   242
     * platform features up to the {@code latestSupported} release,
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   243
     * which may be earlier than the {@code latest} release.
44edf64cb206 8221264: Refactor and update SourceVersion.latestSupported
darcy
parents: 53023
diff changeset
   244
     *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
     * @return the latest source version that is fully supported
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
    public static SourceVersion latestSupported() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
        return latestSupported;
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
     * Returns whether or not {@code name} is a syntactically valid
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
     * identifier (simple name) or keyword in the latest source
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
     * version.  The method returns {@code true} if the name consists
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
     * of an initial character for which {@link
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
     * Character#isJavaIdentifierStart(int)} returns {@code true},
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
     * followed only by characters for which {@link
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
     * Character#isJavaIdentifierPart(int)} returns {@code true}.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   259
     * This pattern matches regular identifiers, keywords, restricted
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54271
diff changeset
   260
     * keywords, restricted identifiers and the literals {@code "true"},
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54271
diff changeset
   261
     * {@code "false"}, {@code "null"}.
48499
239c7d9bb192 8187951: Update javax.lang.model.SourceVersion for "var" name
darcy
parents: 48329
diff changeset
   262
     *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
     * The method returns {@code false} for all other strings.
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
     * @param name the string to check
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
     * @return {@code true} if this string is a
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
     * syntactically valid identifier or keyword, {@code false}
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
     * otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
    public static boolean isIdentifier(CharSequence name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
        String id = name.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
        if (id.length() == 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
        int cp = id.codePointAt(0);
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
        if (!Character.isJavaIdentifierStart(cp)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
        for (int i = Character.charCount(cp);
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
                i < id.length();
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
                i += Character.charCount(cp)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
            cp = id.codePointAt(i);
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
            if (!Character.isJavaIdentifierPart(cp)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
    /**
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   292
     * Returns whether or not {@code name} is a syntactically valid
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   293
     * qualified name in the latest source version.  Unlike {@link
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   294
     * #isIdentifier isIdentifier}, this method returns {@code false}
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   295
     * for keywords, boolean literals, and the null literal.
48499
239c7d9bb192 8187951: Update javax.lang.model.SourceVersion for "var" name
darcy
parents: 48329
diff changeset
   296
     *
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   297
     * This method returns {@code true} for <i>restricted
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54271
diff changeset
   298
     * keywords</i> and <i>restricted identifiers</i>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
     * @param name the string to check
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
     * @return {@code true} if this string is a
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
     * syntactically valid name, {@code false} otherwise.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   303
     * @jls 3.9 Keywords
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
   304
     * @jls 6.2 Names and Identifiers
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
    public static boolean isName(CharSequence name) {
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   307
        return isName(name, latest());
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   308
    }
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   309
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   310
    /**
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   311
     * Returns whether or not {@code name} is a syntactically valid
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   312
     * qualified name in the given source version.  Unlike {@link
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   313
     * #isIdentifier isIdentifier}, this method returns {@code false}
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   314
     * for keywords, boolean literals, and the null literal.
48499
239c7d9bb192 8187951: Update javax.lang.model.SourceVersion for "var" name
darcy
parents: 48329
diff changeset
   315
     *
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   316
     * This method returns {@code true} for <i>restricted
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54271
diff changeset
   317
     * keywords</i> and <i>restricted identifiers</i>
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   318
     *
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   319
     * @param name the string to check
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   320
     * @param version the version to use
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   321
     * @return {@code true} if this string is a
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   322
     * syntactically valid name, {@code false} otherwise.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   323
     * @jls 3.9 Keywords
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   324
     * @jls 6.2 Names and Identifiers
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   325
     * @since 9
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   326
     */
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   327
    public static boolean isName(CharSequence name, SourceVersion version) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
        String id = name.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
        for(String s : id.split("\\.", -1)) {
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   331
            if (!isIdentifier(s) || isKeyword(s, version))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   337
    /**
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   338
     * Returns whether or not {@code s} is a keyword, boolean literal,
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   339
     * or null literal in the latest source version.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   340
     * This method returns {@code false} for <i>restricted
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54271
diff changeset
   341
     * keywords</i> and <i>restricted identifiers</i>.
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   342
     *
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   343
     * @param s the string to check
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   344
     * @return {@code true} if {@code s} is a keyword, or boolean
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   345
     * literal, or null literal, {@code false} otherwise.
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   346
     * @jls 3.9 Keywords
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   347
     * @jls 3.10.3 Boolean Literals
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   348
     * @jls 3.10.7 The Null Literal
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   349
     */
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   350
    public static boolean isKeyword(CharSequence s) {
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   351
        return isKeyword(s, latest());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
    /**
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   355
     * Returns whether or not {@code s} is a keyword, boolean literal,
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   356
     * or null literal in the given source version.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   357
     * This method returns {@code false} for <i>restricted
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 54271
diff changeset
   358
     * keywords</i> and <i>restricted identifiers</i>.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
     * @param s the string to check
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   361
     * @param version the version to use
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   362
     * @return {@code true} if {@code s} is a keyword, or boolean
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   363
     * literal, or null literal, {@code false} otherwise.
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   364
     * @jls 3.9 Keywords
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   365
     * @jls 3.10.3 Boolean Literals
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   366
     * @jls 3.10.7 The Null Literal
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   367
     * @since 9
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
     */
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   369
    public static boolean isKeyword(CharSequence s, SourceVersion version) {
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   370
        String id = s.toString();
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   371
        switch(id) {
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   372
            // A trip through history
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   373
        case "strictfp":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   374
            return version.compareTo(RELEASE_2) >= 0;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   375
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   376
        case "assert":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   377
            return version.compareTo(RELEASE_4) >= 0;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   378
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   379
        case "enum":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   380
            return version.compareTo(RELEASE_5) >= 0;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   381
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   382
        case "_":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   383
            return version.compareTo(RELEASE_9) >= 0;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   384
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   385
            // Keywords common across versions
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   386
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   387
            // Modifiers
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   388
        case "public":    case "protected": case "private":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   389
        case "abstract":  case "static":    case "final":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   390
        case "transient": case "volatile":  case "synchronized":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   391
        case "native":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   392
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   393
            // Declarations
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   394
        case "class":     case "interface": case "extends":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   395
        case "package":   case "throws":    case "implements":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   396
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   397
            // Primitive types and void
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   398
        case "boolean":   case "byte":      case "char":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   399
        case "short":     case "int":       case "long":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   400
        case "float":     case "double":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   401
        case "void":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   402
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   403
            // Control flow
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   404
        case "if":      case "else":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   405
        case "try":     case "catch":    case "finally":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   406
        case "do":      case "while":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   407
        case "for":     case "continue":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   408
        case "switch":  case "case":     case "default":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   409
        case "break":   case "throw":    case "return":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   410
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   411
            // Other keywords
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   412
        case  "this":   case "new":      case "super":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   413
        case "import":  case "instanceof":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   414
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   415
            // Forbidden!
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   416
        case "goto":        case "const":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   417
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   418
            // literals
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   419
        case "null":         case "true":       case "false":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   420
            return true;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   421
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   422
        default:
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   423
            return false;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   424
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
}