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

org.eclipse.persistence.jpa.jpql.tools.model.query.ConcatExpressionStateObject Maven / Gradle / Ivy

There is a newer version: 5.0.0-B02
Show newest version
/*******************************************************************************
 * Copyright (c) 2011, 2014 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:
 *     Oracle - initial API and implementation
 *
 ******************************************************************************/
package org.eclipse.persistence.jpa.jpql.tools.model.query;

import java.io.IOException;
import java.util.List;
import org.eclipse.persistence.jpa.jpql.parser.ConcatExpression;
import static org.eclipse.persistence.jpa.jpql.parser.AbstractExpression.*;
import static org.eclipse.persistence.jpa.jpql.parser.Expression.*;

/**
 * The CONCAT function returns a string that is a concatenation of its arguments.
 * 

* JPA 1.0: *

BNF: expression ::= CONCAT(string_primary, string_primary)

* JPA 2.0 *
BNF: expression ::= CONCAT(string_primary, string_primary {, string_primary}*)

* * @see ConcatExpression * * @version 2.4 * @since 2.4 * @author Pascal Filion */ @SuppressWarnings({"nls", "unused"}) // unused used for the import statement: see bug 330740 public class ConcatExpressionStateObject extends AbstractListHolderStateObject { /** * Notifies the content of the list of {@link StateObject} representing the string primaries * has changed. */ public static final String STRING_PRIMARY_STATE_OBJECT_LIST = "stringPrimary"; /** * Creates a new ConcatExpressionStateObject. * * @param parent The parent of this state object, which cannot be null * @exception NullPointerException The given parent cannot be null */ public ConcatExpressionStateObject(StateObject parent) { super(parent); } /** * Creates a new ConcatExpressionStateObject. * * @param stateObjects The list of {@link StateObject} representing the encapsulated expressions */ public ConcatExpressionStateObject(StateObject parent, List stateObjects) { super(parent, stateObjects); } /** * Creates a new ConcatExpressionStateObject. * * @param parent The parent of this state object, which cannot be null * @param stateObjects The list of {@link StateObject} representing the encapsulated expressions * @exception NullPointerException The given parent cannot be null */ public ConcatExpressionStateObject(StateObject parent, StateObject... stateObjects) { super(parent, stateObjects); } /** * {@inheritDoc} */ public void accept(StateObjectVisitor visitor) { visitor.visit(this); } /** * {@inheritDoc} */ @Override public ConcatExpression getExpression() { return (ConcatExpression) super.getExpression(); } /** * {@inheritDoc} */ @Override public boolean isEquivalent(StateObject stateObject) { return super.isEquivalent(stateObject) && areChildrenEquivalent((ConcatExpressionStateObject) stateObject); } /** * {@inheritDoc} */ @Override protected String listName() { return STRING_PRIMARY_STATE_OBJECT_LIST; } /** * Keeps a reference of the {@link ConcatExpression parsed object} object, which should only be * done when this object is instantiated during the conversion of a parsed JPQL query into * {@link StateObject StateObjects}. * * @param expression The {@link ConcatExpression parsed object} representing a CONCAT * expression */ public void setExpression(ConcatExpression expression) { super.setExpression(expression); } /** * {@inheritDoc} */ @Override protected void toTextInternal(Appendable writer) throws IOException { writer.append(CONCAT); writer.append(LEFT_PARENTHESIS); toStringItems(writer, true); writer.append(RIGHT_PARENTHESIS); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy