All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.persistence.jpa.jpql.tools.model.query.SimpleFromClauseStateObject Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 2011, 2018 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 v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0,
 * or the Eclipse Distribution License v. 1.0 which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
 */

// Contributors:
//     Oracle - initial API and implementation
//
package org.eclipse.persistence.jpa.jpql.tools.model.query;

import org.eclipse.persistence.jpa.jpql.parser.InternalSimpleFromClauseBNF;
import org.eclipse.persistence.jpa.jpql.parser.SimpleFromClause;
import org.eclipse.persistence.jpa.jpql.tools.spi.IManagedType;

/**
 * The FROM clause of a sub-query defines the domain of the sub-query by
 * declaring identification variables. An identification variable is an identifier declared in the
 * FROM clause of a sub-query. The domain of the sub-query may be constrained by
 * path expressions. Identification variables designate instances of a particular entity abstract
 * schema type. The FROM clause can contain multiple identification variable
 * declarations separated by a comma (,).
 *
 * 
BNF: subquery_from_clause ::= FROM subselect_identification_variable_declaration {, subselect_identification_variable_declaration}*
* * @see SimpleFromClause * * @version 2.4 * @since 2.4 * @author Pascal Filion */ public class SimpleFromClauseStateObject extends AbstractFromClauseStateObject { /** * Creates a new SimpleFromClauseStateObject. * * @param parent The parent of this state object, which cannot be null * @exception NullPointerException The given parent cannot be null */ public SimpleFromClauseStateObject(SimpleSelectStatementStateObject parent) { super(parent); } /** * {@inheritDoc} */ public void accept(StateObjectVisitor visitor) { visitor.visit(this); } /** * Adds a new derived collection declaration to the FROM clause. * * @return The {@link CollectionMemberDeclarationStateObject} representing the collection * declaration */ public CollectionMemberDeclarationStateObject addDerivedCollectionDeclaration() { CollectionMemberDeclarationStateObject stateObject = new CollectionMemberDeclarationStateObject(this); addItem(stateObject); return stateObject; } /** * Adds a new derived collection declaration to the FROM clause. * * @param collectionValuedPath The collection-valued path expression * @return The {@link CollectionMemberDeclarationStateObject} representing the collection * declaration */ public CollectionMemberDeclarationStateObject addDerivedCollectionDeclaration(String collectionValuedPath) { CollectionMemberDeclarationStateObject stateObject = new CollectionMemberDeclarationStateObject( this, collectionValuedPath ); addItem(stateObject); return stateObject; } /** * Adds a new derived identification variable declaration to the FROM clause. * * @return The {@link DerivedPathIdentificationVariableDeclarationStateObject} representing the * path declaration */ public DerivedPathIdentificationVariableDeclarationStateObject addDerivedPathDeclaration() { DerivedPathIdentificationVariableDeclarationStateObject stateObject = new DerivedPathIdentificationVariableDeclarationStateObject(this); addItem(stateObject); return stateObject; } /** * Adds a new derived identification variable declaration to the FROM clause. * * @param path Either the derived singled-valued object field or the collection-valued path expression * @param identificationVariable The identification variable defining the given path * @return The {@link DerivedPathIdentificationVariableDeclarationStateObject} representing the * path declaration */ public DerivedPathIdentificationVariableDeclarationStateObject addDerivedPathDeclaration(String path, String identificationVariable) { DerivedPathIdentificationVariableDeclarationStateObject stateObject = new DerivedPathIdentificationVariableDeclarationStateObject( this, path, identificationVariable ); addItem(stateObject); return stateObject; } /** * {@inheritDoc} */ @Override public String declarationBNF() { return InternalSimpleFromClauseBNF.ID; } /** * {@inheritDoc} */ public IManagedType findManagedType(StateObject stateObject) { IManagedType managedType = getManagedType(stateObject); if (managedType == null) { managedType = getParent().getParent().getDeclaration().findManagedType(stateObject); } return managedType; } /** * {@inheritDoc} */ @Override public SimpleFromClause getExpression() { return (SimpleFromClause) super.getExpression(); } /** * {@inheritDoc} */ @Override public SimpleSelectStatementStateObject getParent() { return (SimpleSelectStatementStateObject) super.getParent(); } /** * Keeps a reference of the {@link SimpleFromClause parsed object} object, which should only be * done when this object is instantiated during the conversion of a parsed JPQL query into * {@link StateObject StateObjects}. * * @param expression The {@link SimpleFromClause parsed object} representing a subquery * FROM clause */ public void setExpression(SimpleFromClause expression) { super.setExpression(expression); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy