ComponentPatternExpr.java
/*
* Copyright (C) 2007-2010 J��lio Vilmar Gesser.
* Copyright (C) 2011, 2013-2024 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.expr;
import com.github.javaparser.TokenRange;
import com.github.javaparser.ast.AllFieldsConstructor;
import com.github.javaparser.ast.Generated;
import com.github.javaparser.ast.visitor.CloneVisitor;
import com.github.javaparser.metamodel.ComponentPatternExprMetaModel;
import com.github.javaparser.metamodel.JavaParserMetaModel;
import java.util.Optional;
import java.util.function.Consumer;
/**
* <h1>Pattern Matching in Java</h1>
*
* <h2>Java 1.0 to 13</h2>
* Not available.
* <br>
* <h2>Java 14</h2>
* Java 14 introduced TypePatterns with simple pattern matching in {@code instanceof} expressions.
* @see com.github.javaparser.ast.expr.TypePatternExpr
* <h2>Java 21</h2>
* In Java 21, support for pattern matching was extended to switch expressions and {@code Record Patterns}
* were introduced. Since {@code Record Patterns} and {@code TypePatterns} can be used interchangeably, the
* {@code PatternExpr} class is used as a common parent for both in the JavaParser AST.
* <h2>Java22</h2>
* Java 22 added support for match-all pattern expressions that do not have types and cannot be used as
* top-level patterns. This required a change to the pattern representation in JavaParser. Following the
* naming convention and structure of the JLS, {@code ComponentPatternExpr} is now the base class for all pattern
* expressions. A {@code ComponentPatternExpr} can either be a {@code MatchAllPatternExpr}, or a {@code PatternExpr}.
* {@code PatternExpr} can then be either a {@code TypePatternExpr} or a {@code RecordPatternExpr}.
*
* <h3>JDK22 Grammar</h3>
* <br>
* <pre><code>Pattern:
* TypePattern
* RecordPattern
* TypePattern:
* LocalVariableDeclaration
* RecordPattern:
* ReferenceType ( [ComponentPatternList] )
* ComponentPatternList:
* ComponentPattern {, ComponentPattern }
* ComponentPattern:
* Pattern
* MatchAllPattern
* MatchAllPattern:
* _</code></pre>
*
* @author Johannes Coetzee
*
* @see <a href="https://bugs.openjdk.java.net/browse/JDK-8181287">JEP305: https://bugs.openjdk.java.net/browse/JDK-8181287</a>
* @see <a href="https://docs.oracle.com/javase/specs/jls/se11/html/jls-15.html#jls-15.20">https://docs.oracle.com/javase/specs/jls/se11/html/jls-15.html#jls-15.20</a>
*/
public abstract class ComponentPatternExpr extends Expression {
@AllFieldsConstructor
public ComponentPatternExpr() {}
@Override
@Generated("com.github.javaparser.generator.core.node.TypeCastingGenerator")
public boolean isComponentPatternExpr() {
return true;
}
@Override
@Generated("com.github.javaparser.generator.core.node.TypeCastingGenerator")
public ComponentPatternExpr asComponentPatternExpr() {
return this;
}
@Override
@Generated("com.github.javaparser.generator.core.node.TypeCastingGenerator")
public Optional<ComponentPatternExpr> toComponentPatternExpr() {
return Optional.of(this);
}
@Override
@Generated("com.github.javaparser.generator.core.node.TypeCastingGenerator")
public void ifComponentPatternExpr(Consumer<ComponentPatternExpr> action) {
action.accept(this);
}
@Override
@Generated("com.github.javaparser.generator.core.node.CloneGenerator")
public ComponentPatternExpr clone() {
return (ComponentPatternExpr) accept(new CloneVisitor(), null);
}
@Override
@Generated("com.github.javaparser.generator.core.node.GetMetaModelGenerator")
public ComponentPatternExprMetaModel getMetaModel() {
return JavaParserMetaModel.componentPatternExprMetaModel;
}
/**
* This constructor is used by the parser and is considered private.
*/
@Generated("com.github.javaparser.generator.core.node.MainConstructorGenerator")
public ComponentPatternExpr(TokenRange tokenRange) {
super(tokenRange);
customInitialization();
}
}