src/java.compiler/share/classes/javax/lang/model/SourceVersion.java
author darcy
Wed, 13 Dec 2017 19:48:03 -0800
changeset 48329 984c4b99afc9
parent 47475 d87f89c74f54
child 48343 d4329843abf4
child 48499 239c7d9bb192
permissions -rw-r--r--
8193489: Add information about local variable type inference to SourceVersion.RELEASE_10 Reviewed-by: sundar, mr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
     2
 * Copyright (c) 2005, 2017, 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)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
     * The original version.
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
     *
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    65
     * 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
    66
     * <cite>The Java&trade; Language Specification, First Edition</cite>.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    RELEASE_0,
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
     * The version recognized by the Java Platform 1.1.
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
     *
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    73
     * 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
    74
     * <cite>The Java&trade; Language Specification, First Edition</cite>.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    RELEASE_1,
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
     * The version recognized by the Java 2 Platform, Standard Edition,
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
     * v 1.2.
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
     *
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
    82
     * 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
    83
     * <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
    84
     * Second Edition</cite>, which includes the {@code
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     * strictfp} modifier.
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
    RELEASE_2,
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     * The version recognized by the Java 2 Platform, Standard Edition,
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
     * v 1.3.
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
     * No major changes from {@code RELEASE_2}.
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
    RELEASE_3,
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
     * The version recognized by the Java 2 Platform, Standard Edition,
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     * v 1.4.
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
     * Added a simple assertion facility.
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    RELEASE_4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     * The version recognized by the Java 2 Platform, Standard
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     * Edition 5.0.
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
     *
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 5520
diff changeset
   109
     * 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
   110
     * <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
   111
     * Third Edition</cite>.  First release to support
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
     * generics, annotations, autoboxing, var-args, enhanced {@code
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
     * for} loop, and hexadecimal floating-point literals.
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    RELEASE_5,
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
     * The version recognized by the Java Platform, Standard Edition
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     * 6.
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
     * No major changes from {@code RELEASE_5}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
    RELEASE_6,
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
     * The version recognized by the Java Platform, Standard Edition
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
     * 7.
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
     *
18660
d8332e6f4fab 8019308: Add descriptions of Java SE 7 and 8 language changes to SourceVersion
darcy
parents: 15385
diff changeset
   129
     * 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
   130
     * 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
   131
     * binary literals, and multi-catch.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
     * @since 1.7
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
     */
10180
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   134
    RELEASE_7,
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   135
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   136
    /**
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   137
     * The version recognized by the Java Platform, Standard Edition
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   138
     * 8.
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   139
     *
18660
d8332e6f4fab 8019308: Add descriptions of Java SE 7 and 8 language changes to SourceVersion
darcy
parents: 15385
diff changeset
   140
     * Additions in this release include lambda expressions and default methods.
10180
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   141
     * @since 1.8
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   142
     */
22169
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   143
    RELEASE_8,
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   144
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   145
    /**
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   146
     * The version recognized by the Java Platform, Standard Edition
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   147
     * 9.
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   148
     *
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   149
     * Additions in this release include modules and removal of a
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   150
     * single underscore from the set of legal identifier names.
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   151
     *
34912
954fa9df99c7 8146572: Update "@since 1.9" to "@since 9" to match java.version.specification [langtools]
jjg
parents: 34072
diff changeset
   152
     * @since 9
22169
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   153
     */
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   154
     RELEASE_9,
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   155
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   156
    /**
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   157
     * The version recognized by the Java Platform, Standard Edition
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   158
     * 10.
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   159
     *
48329
984c4b99afc9 8193489: Add information about local variable type inference to SourceVersion.RELEASE_10
darcy
parents: 47475
diff changeset
   160
     * 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
   161
     * ({@code var}).
984c4b99afc9 8193489: Add information about local variable type inference to SourceVersion.RELEASE_10
darcy
parents: 47475
diff changeset
   162
     *
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   163
     * @since 10
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   164
     */
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   165
     RELEASE_10;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
    // Note that when adding constants for newer releases, the
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    // behavior of latest() and latestSupported() must be updated too.
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
     * Returns the latest source version that can be modeled.
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     * @return the latest source version that can be modeled
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
    public static SourceVersion latest() {
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   176
        return RELEASE_10;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    private static final SourceVersion latestSupported = getLatestSupported();
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    private static SourceVersion getLatestSupported() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
            String specVersion = System.getProperty("java.specification.version");
10180
b293c1f36ac4 7025784: Add SourceVersion.RELEASE_8
darcy
parents: 9303
diff changeset
   184
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 18660
diff changeset
   185
            switch (specVersion) {
43646
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   186
                case "10":
017aba6e9260 8028544: Add SourceVersion.RELEASE_10
darcy
parents: 38534
diff changeset
   187
                    return RELEASE_10;
34070
792098bae87e 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 25874
diff changeset
   188
                case "9":
22169
4be6dc44489b 8028543: Add SourceVersion.RELEASE_9
darcy
parents: 22163
diff changeset
   189
                    return RELEASE_9;
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 18660
diff changeset
   190
                case "1.8":
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 18660
diff changeset
   191
                    return RELEASE_8;
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 18660
diff changeset
   192
                case "1.7":
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 18660
diff changeset
   193
                    return RELEASE_7;
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 18660
diff changeset
   194
                case "1.6":
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 18660
diff changeset
   195
                    return RELEASE_6;
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 18660
diff changeset
   196
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
        } catch (SecurityException se) {}
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        return RELEASE_5;
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     * Returns the latest source version fully supported by the
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     * current execution environment.  {@code RELEASE_5} or later must
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
     * be returned.
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
     * @return the latest source version that is fully supported
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
    public static SourceVersion latestSupported() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
        return latestSupported;
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
     * Returns whether or not {@code name} is a syntactically valid
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
     * identifier (simple name) or keyword in the latest source
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
     * version.  The method returns {@code true} if the name consists
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
     * of an initial character for which {@link
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
     * Character#isJavaIdentifierStart(int)} returns {@code true},
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
     * followed only by characters for which {@link
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
     * Character#isJavaIdentifierPart(int)} returns {@code true}.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   221
     * This pattern matches regular identifiers, keywords, restricted
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   222
     * keywords, and the literals {@code "true"}, {@code "false"}, and
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   223
     * {@code "null"}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
     * The method returns {@code false} for all other strings.
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
     * @param name the string to check
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
     * @return {@code true} if this string is a
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     * syntactically valid identifier or keyword, {@code false}
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
     * otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
    public static boolean isIdentifier(CharSequence name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
        String id = name.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
        if (id.length() == 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
        int cp = id.codePointAt(0);
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
        if (!Character.isJavaIdentifierStart(cp)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
        for (int i = Character.charCount(cp);
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
                i < id.length();
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
                i += Character.charCount(cp)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
            cp = id.codePointAt(i);
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
            if (!Character.isJavaIdentifierPart(cp)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
    /**
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   253
     * Returns whether or not {@code name} is a syntactically valid
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   254
     * qualified name in the latest source version.  Unlike {@link
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   255
     * #isIdentifier isIdentifier}, this method returns {@code false}
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   256
     * for keywords, boolean literals, and the null literal.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   257
     * This method returns {@code true} for <i>restricted
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   258
     * keywords</i>.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
     * @param name the string to check
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
     * @return {@code true} if this string is a
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
     * syntactically valid name, {@code false} otherwise.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   263
     * @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
   264
     * @jls 6.2 Names and Identifiers
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
    public static boolean isName(CharSequence name) {
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   267
        return isName(name, latest());
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   268
    }
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   269
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   270
    /**
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   271
     * Returns whether or not {@code name} is a syntactically valid
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   272
     * qualified name in the given source version.  Unlike {@link
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   273
     * #isIdentifier isIdentifier}, this method returns {@code false}
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   274
     * for keywords, boolean literals, and the null literal.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   275
     * This method returns {@code true} for <i>restricted
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   276
     * keywords</i>.
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   277
     *
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   278
     * @param name the string to check
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   279
     * @param version the version to use
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   280
     * @return {@code true} if this string is a
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   281
     * syntactically valid name, {@code false} otherwise.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   282
     * @jls 3.9 Keywords
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   283
     * @jls 6.2 Names and Identifiers
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   284
     * @since 9
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   285
     */
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   286
    public static boolean isName(CharSequence name, SourceVersion version) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
        String id = name.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
        for(String s : id.split("\\.", -1)) {
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   290
            if (!isIdentifier(s) || isKeyword(s, version))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   296
    /**
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   297
     * 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
   298
     * or null literal in the latest source version.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   299
     * This method returns {@code false} for <i>restricted
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   300
     * keywords</i>.
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   301
     *
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   302
     * @param s the string to check
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   303
     * @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
   304
     * literal, or null literal, {@code false} otherwise.
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   305
     * @jls 3.9 Keywords
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   306
     * @jls 3.10.3 Boolean Literals
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   307
     * @jls 3.10.7 The Null Literal
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
    public static boolean isKeyword(CharSequence s) {
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   310
        return isKeyword(s, latest());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
    /**
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   314
     * 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
   315
     * or null literal in the given source version.
47283
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   316
     * This method returns {@code false} for <i>restricted
ce5fd3ba3fea 8187982: Update SourceVersion to mention restricted keywords
darcy
parents: 47216
diff changeset
   317
     * keywords</i>.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
     * @param s the string to check
38534
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 {@code s} is a keyword, or boolean
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   322
     * literal, or null literal, {@code false} otherwise.
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   323
     * @jls 3.9 Keywords
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   324
     * @jls 3.10.3 Boolean Literals
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   325
     * @jls 3.10.7 The Null Literal
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   326
     * @since 9
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
     */
38534
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   328
    public static boolean isKeyword(CharSequence s, SourceVersion version) {
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   329
        String id = s.toString();
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   330
        switch(id) {
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   331
            // A trip through history
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   332
        case "strictfp":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   333
            return version.compareTo(RELEASE_2) >= 0;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   334
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   335
        case "assert":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   336
            return version.compareTo(RELEASE_4) >= 0;
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
        case "enum":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   339
            return version.compareTo(RELEASE_5) >= 0;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   340
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   341
        case "_":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   342
            return version.compareTo(RELEASE_9) >= 0;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   343
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   344
            // Keywords common across versions
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   345
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   346
            // Modifiers
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   347
        case "public":    case "protected": case "private":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   348
        case "abstract":  case "static":    case "final":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   349
        case "transient": case "volatile":  case "synchronized":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   350
        case "native":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   351
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   352
            // Declarations
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   353
        case "class":     case "interface": case "extends":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   354
        case "package":   case "throws":    case "implements":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   355
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   356
            // Primitive types and void
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   357
        case "boolean":   case "byte":      case "char":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   358
        case "short":     case "int":       case "long":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   359
        case "float":     case "double":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   360
        case "void":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   361
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   362
            // Control flow
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   363
        case "if":      case "else":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   364
        case "try":     case "catch":    case "finally":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   365
        case "do":      case "while":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   366
        case "for":     case "continue":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   367
        case "switch":  case "case":     case "default":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   368
        case "break":   case "throw":    case "return":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   369
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   370
            // Other keywords
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   371
        case  "this":   case "new":      case "super":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   372
        case "import":  case "instanceof":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   373
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   374
            // Forbidden!
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   375
        case "goto":        case "const":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   376
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   377
            // literals
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   378
        case "null":         case "true":       case "false":
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   379
            return true;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   380
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   381
        default:
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   382
            return false;
425b30506f80 6415644: Make javax.lang.model.SourceVersion more informative
darcy
parents: 35351
diff changeset
   383
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
}