src/java.compiler/share/classes/javax/lang/model/SourceVersion.java
changeset 59068 dc45ed0ab083
parent 55382 30b1b7b4dd86
equal deleted inserted replaced
59067:f080b08daace 59068:dc45ed0ab083
    56      * 1.7: diamond syntax, try-with-resources, etc.
    56      * 1.7: diamond syntax, try-with-resources, etc.
    57      * 1.8: lambda expressions and default methods
    57      * 1.8: lambda expressions and default methods
    58      *   9: modules, small cleanups to 1.7 and 1.8 changes
    58      *   9: modules, small cleanups to 1.7 and 1.8 changes
    59      *  10: local-variable type inference (var)
    59      *  10: local-variable type inference (var)
    60      *  11: local-variable syntax for lambda parameters
    60      *  11: local-variable syntax for lambda parameters
    61      *  12: no changes (switch expressions were in preview)
    61      *  12: no changes (switch expressions in preview)
    62      *  13: no changes (switch expressions and text blocks in preview)
    62      *  13: no changes (switch expressions and text blocks in preview)
    63      *  14: TBD
    63      *  14: switch expressions
    64      */
    64      */
    65 
    65 
    66     /**
    66     /**
    67      * The original version.
    67      * The original version.
    68      *
    68      *
   196      RELEASE_13,
   196      RELEASE_13,
   197 
   197 
   198     /**
   198     /**
   199      * The version recognized by the Java Platform, Standard Edition
   199      * The version recognized by the Java Platform, Standard Edition
   200      * 14.
   200      * 14.
       
   201      *
       
   202      * Additions in this release include switch expressions.
   201      *
   203      *
   202      * @since 14
   204      * @since 14
   203      */
   205      */
   204      RELEASE_14;
   206      RELEASE_14;
   205 
   207