1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
/*
* Copyright (c) 2011, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2021 IBM Corporation. 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 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;
/**
* <p>
* <b>Purpose</b>: Contains the implementation of the Selection interface of the JPA
* criteria API.
* <p>
* <b>Description</b>: The Selection is the expression describing what should be returned by the query.
* <p>
*
* @see javax.persistence.criteria Join
*
* @author gyorke
* @since EclipseLink 1.2
*/
public abstract class SelectionImpl<X> implements Selection<X>, InternalSelection, Serializable{
protected Class<X> 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 <T> SelectionImpl(Class<X> javaType, Expression expressionNode){
this.javaType = javaType;
this.currentNode = expressionNode;
}
//SELECTION
/**
* Assign an alias to the selection.
*
* @param name
* alias
*/
public Selection<X> alias(String name) {
this.alias = name;
return this;
}
public String getAlias() {
return this.alias;
}
public Class<? extends X> getJavaType() {
return this.javaType;
}
public void setJavaType(Class<X> javaType) {
this.javaType = javaType;
}
/**
* Return selection items composing a compound selection
* @return list of selection items
* @throws IllegalStateException if selection is not a compound
* selection
*/
public List<Selection<?>> 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;
}
}
|