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

org.eclipse.persistence.internal.jpa.querydef.BasicMapJoinImpl 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:
//     Gordon Yorke - Initial development
//
package org.eclipse.persistence.internal.jpa.querydef;

import javax.persistence.criteria.CollectionJoin;
import javax.persistence.criteria.Expression;
import javax.persistence.criteria.Join;
import javax.persistence.criteria.JoinType;
import javax.persistence.criteria.ListJoin;
import javax.persistence.criteria.MapJoin;
import javax.persistence.criteria.Path;
import javax.persistence.criteria.SetJoin;
import javax.persistence.metamodel.Bindable;
import javax.persistence.metamodel.CollectionAttribute;
import javax.persistence.metamodel.ListAttribute;
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: Represents a Join to a ElementCollection of basics. *

* Description: Represents a Join to a ElementCollection of basics. * Special type of Join that does not allow further joins. *

* * @see javax.persistence.criteria MapJoin * * @author gyorke * @since EclipseLink 1.2 */ @SuppressWarnings("hiding") public class BasicMapJoinImpl extends MapJoinImpl { public BasicMapJoinImpl(Path parentPath, Metamodel metamodel, Class javaClass, org.eclipse.persistence.expressions.Expression expressionNode, Bindable modelArtifact){ this(parentPath, metamodel, javaClass, expressionNode, modelArtifact,JoinType.INNER); } public BasicMapJoinImpl(Path parentPath, Metamodel metamodel, Class javaClass, org.eclipse.persistence.expressions.Expression expressionNode, Bindable modelArtifact, JoinType joinType){ super(parentPath, null, metamodel, javaClass, expressionNode, modelArtifact, joinType); } /** * Return the path corresponding to the referenced non-collection valued * attribute. * * @param att * attribute * @return path corresponding to the referenced attribute */ @Override 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 collection * collection-valued attribute * @return expression corresponding to the referenced attribute */ @Override 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 map * map-valued attribute * @return expression corresponding to the referenced attribute */ @Override 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 */ @Override public Expression> type(){ throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_type_does_not_apply")); } @Override public Path get(String attName) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } @Override public Join join(SingularAttribute attribute, JoinType jt) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } @Override public CollectionJoin join(CollectionAttribute collection, JoinType jt) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } @Override public SetJoin join(javax.persistence.metamodel.SetAttribute set, JoinType jt) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } @Override public ListJoin join(ListAttribute list, JoinType jt) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } @Override public MapJoin join(MapAttribute map, JoinType jt) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } @Override public Join join(String attributeName, JoinType jt) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } @Override public CollectionJoin joinCollection(String attributeName, JoinType jt) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } @Override public ListJoin joinList(String attributeName, JoinType jt) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } @Override public MapJoin joinMap(String attributeName, JoinType jt) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } @Override public SetJoin joinSet(String attributeName, JoinType jt) { throw new IllegalStateException(ExceptionLocalization.buildMessage("pathnode_is_primitive_node")); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy