org.eclipse.persistence.jpa.jpql.parser.TableExpression Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2012, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation
*
******************************************************************************/
package org.eclipse.persistence.jpa.jpql.parser;
/**
* Defines a table expression. This allow a non-mapped table to be used in a query. This is not part
* of the JPA functional specification but is EclipseLink specific support.
*
*
BNF: table_expression ::= TABLE(string_literal)
*
*
* @version 2.5
* @since 2.4
* @author James Sutherland
*/
public final class TableExpression extends AbstractSingleEncapsulatedExpression {
/**
* Creates a new TableExpression
.
*
* @param parent The parent of this expression
*/
public TableExpression(AbstractExpression parent) {
super(parent, TABLE);
}
/**
* {@inheritDoc}
*/
public void accept(ExpressionVisitor visitor) {
acceptUnknownVisitor(visitor);
}
/**
* {@inheritDoc}
*/
@Override
public String getEncapsulatedExpressionQueryBNFId() {
return StringLiteralBNF.ID;
}
/**
* {@inheritDoc}
*/
public JPQLQueryBNF getQueryBNF() {
return getQueryBNF(TableExpressionBNF.ID);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy