Java14Validator.java
/*
* Copyright (C) 2007-2010 J��lio Vilmar Gesser.
* Copyright (C) 2011, 2013-2023 The JavaParser Team.
*
* This file is part of JavaParser.
*
* JavaParser can be used either under the terms of
* a) the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* b) the terms of the Apache License
*
* You should have received a copy of both licenses in LICENCE.LGPL and
* LICENCE.APACHE. Please refer to those files for details.
*
* JavaParser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
package com.github.javaparser.ast.validator.language_level_validations;
import com.github.javaparser.ast.body.RecordDeclaration;
import com.github.javaparser.ast.validator.RecordAsTypeIdentifierNotAllowed;
import com.github.javaparser.ast.validator.SingleNodeTypeValidator;
import com.github.javaparser.ast.validator.Validator;
import com.github.javaparser.ast.validator.language_level_validations.chunks.RecordDeclarationValidator;
/**
* This validator validates according to Java 14 syntax rules.
*
* @see <a href="https://openjdk.java.net/projects/jdk/14/">https://openjdk.java.net/projects/jdk/14/</a>
*/
public class Java14Validator extends Java13Validator {
/**
* With the introduction of record classes, {@code record} is no longer permitted as an identifier.
* <blockquote>
* A type identifier is any identifier other than the character sequences var, yield, and record.<br/>
* <br/>
* Type identifiers are used in certain contexts involving the declaration or use of types. For example,
* the name of a class must be a TypeIdentifier, so it is illegal to declare a class named var,
* yield, or record (8.1).
* </blockquote>
* https://docs.oracle.com/javase/specs/jls/se15/preview/specs/records-jls.html#jls-3.8
*/
final Validator recordAsTypeIdentifierNotAllowed = new RecordAsTypeIdentifierNotAllowed();
final Validator recordDeclarationValidator = new SingleNodeTypeValidator<>(RecordDeclaration.class, new RecordDeclarationValidator());
public Java14Validator() {
super();
// Released Language Features
{
/*
* Switch Expressions (Standard) - released within Java 14 - https://openjdk.java.net/jeps/361
* <ul>
* <li>Switch permissions are permitted</li>
* <li>Previous preview allowed only a single label - this permits multiple.</li>
* <li>Yield is now permitted within a switch expression.</li>
* </ul>
*/
remove(noSwitchExpressions);
remove(onlyOneLabelInSwitchCase);
remove(noYield);
}
}
}