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

org.eclipse.persistence.internal.jpa.querydef.PathImpl Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*******************************************************************************
 * Copyright (c) 2011, 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:
 *     Gordon Yorke - Initial development
 *
 ******************************************************************************/

package org.eclipse.persistence.internal.jpa.querydef;

import javax.persistence.criteria.Expression;
import javax.persistence.criteria.Path;
import javax.persistence.metamodel.Bindable;
import javax.persistence.metamodel.MapAttribute;
import javax.persistence.metamodel.Metamodel;
import javax.persistence.metamodel.PluralAttribute;
import javax.persistence.metamodel.SingularAttribute;

import org.eclipse.persistence.internal.localization.ExceptionLocalization;

/**
 * 

* Purpose: Contains the implementation of the Path interface of the JPA * criteria API. *

* Description: This class represents an abstract path which is a model of the expression through joins. *

* * @see javax.persistence.criteria Path * * @author gyorke * @since EclipseLink 1.2 */ public class PathImpl extends ExpressionImpl implements Path, Cloneable{ protected Path pathParent; // Although this is an Object type only Attributes that implement Bindable are passed to this class // sublcasses like JoinImpl will cast this artifact to Attribute protected Object modelArtifact; public PathImpl(Path parent, Metamodel metamodel, Class javaClass, org.eclipse.persistence.expressions.Expression expressionNode, Bindable modelArtifact) { super(metamodel, javaClass, expressionNode); this.pathParent = parent; this.modelArtifact = modelArtifact; } /** * Return the bindable object that corresponds to the path expression. * * @return bindable object corresponding to the path */ public Bindable getModel(){ return (Bindable) this.modelArtifact; } /** * Return the parent "node" in the path. * * @return parent */ public Path getParentPath(){ return this.pathParent; } /** * Return the path corresponding to the referenced non-collection valued * attribute. * * @param model * attribute * @return path corresponding to the referenced attribute */ public Path get(SingularAttribute att){ throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } /** * Return the path corresponding to the referenced collection-valued * attribute. * * @param model * collection-valued attribute * @return expression corresponding to the referenced attribute */ public > Expression get(PluralAttribute collection){ throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } /** * Return the path corresponding to the referenced map-valued attribute. * * @param model * map-valued attribute * @return expression corresponding to the referenced attribute */ public > Expression get(MapAttribute map){ throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } /** * Return an expression corresponding to the type of the path. * * @return expression corresponding to the type of the path */ public Expression> type(){ throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_type_does_not_apply_to_primitive_node")); } public Path get(String attName) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } public void findRootAndParameters(CommonAbstractCriteriaImpl query){ ((PathImpl)this.pathParent).findRootAndParameters(query); } protected Object clone() { try { return super.clone(); } catch (CloneNotSupportedException excecption) { return null; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy