org.eclipse.persistence.internal.jpa.querydef.CompoundExpressionImpl Maven / Gradle / Ivy
Show all versions of eclipselink Show documentation
/*
* 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 java.util.ArrayList;
import java.util.List;
import javax.persistence.criteria.Expression;
import javax.persistence.criteria.Predicate;
import javax.persistence.metamodel.Metamodel;
import org.eclipse.persistence.internal.helper.ClassConstants;
/**
*
* Purpose: Contains the implementation of the Predicate interface of the JPA
* criteria API.
*
* Description: The predicate forms the least specific expression node. Predicates
* result in boolean expressions that are combined to form the final expression.
*
*
* @see javax.persistence.criteria Predicate
*
* @author gyorke
* @since EclipseLink 1.2
*/
public class CompoundExpressionImpl extends FunctionExpressionImpl implements Predicate{
protected boolean isNegated = false;
public CompoundExpressionImpl (Metamodel metamodel, org.eclipse.persistence.expressions.Expression expressionNode, List> compoundExpressions){
super(metamodel, (Class)ClassConstants.BOOLEAN, expressionNode, compoundExpressions);
}
public CompoundExpressionImpl (Metamodel metamodel, org.eclipse.persistence.expressions.Expression expressionNode, List> compoundExpressions, String operator){
super(metamodel, (Class)ClassConstants.BOOLEAN, expressionNode, compoundExpressions, operator);
}
/**
* Return the boolean operator for the predicate. If the predicate is
* simple, this is AND.
*
* @return boolean operator for the predicate
*/
public BooleanOperator getOperator(){
return BooleanOperator.AND;
}
@Override
/**
* Return the top-level conjuncts or disjuncts of the predicate.
*
* @return list boolean expressions forming the predicate
*/
public List> getExpressions(){
return new ArrayList<>();
}
public boolean isCompoundExpression(){
return true;
}
@Override
public boolean isExpression(){
return false;
}
/**
* Has negation been applied to the predicate.
*
* @return boolean indicating if the predicate has been negated
*/
public boolean isNegated(){
return isNegated;
}
/**
* Apply negation to the predicate.
*
* @return the negated predicate
*/
public Predicate not(){
List> list = new ArrayList();
list.add(this);
CompoundExpressionImpl expr = new CompoundExpressionImpl(this.metamodel, this.currentNode.not(), list, "not");
expr.setIsNegated(true);
return expr;
}
@Override
public boolean isPredicate(){
return true;
}
protected void setIsNegated(boolean isNegated){
this.isNegated = isNegated;
}
/**
* @param operator the operator to set
*/
public void setOperator(BooleanOperator operator) {
//
}
/**
* This method is used to store what will be the parent EclipseLink expression in the case the tree needs to be altered.
* Currently used for In.
*/
public void setParentNode(org.eclipse.persistence.expressions.Expression parentNode){
//no-op but can not be abstract as CompoundExpressionImpl is not abstract
}
}