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

org.eclipse.persistence.internal.jpa.querydef.SelectionImpl 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 java.io.Serializable;
import java.util.List;

import javax.persistence.criteria.Selection;

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

/**
 * 

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

* Description: The Selection is the expression describing what should be returned by the query. *

* * @see javax.persistence.criteria Join * * @author gyorke * @since EclipseLink 1.2 */ public abstract class SelectionImpl implements Selection, InternalSelection, Serializable{ protected Class javaType; protected Expression currentNode; /** * Returns the current EclipseLink expression at this node in the criteria expression tree * @return the currentNode */ public Expression getCurrentNode() { return currentNode; } protected String alias; public SelectionImpl(Class javaType, Expression expressionNode){ this.javaType = javaType; this.currentNode = expressionNode; } //SELECTION /** * Assign an alias to the selection. * * @param name * alias */ public Selection alias(String name) { this.alias = name; return this; } public String getAlias() { return this.alias; } public Class getJavaType() { return this.javaType; } /** * Return selection items composing a compound selection * @return list of selection items * @throws IllegalStateException if selection is not a compound * selection */ public List> getCompoundSelectionItems(){ throw new IllegalStateException(ExceptionLocalization.buildMessage("CRITERIA_NOT_A_COMPOUND_SELECTION")); } /** * Whether the selection item is a compound selection * @return boolean */ public boolean isCompoundSelection(){ return false; } public boolean isFrom(){ return false; } public boolean isRoot(){ return false; } public boolean isConstructor(){ return false; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy