blob: e66ca09cc4bf50b9a3b29c79e35b2d313bd6b9a4 [file] [log] [blame]
/*
* Copyright (c) 2011, 2021 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:
// Oracle - initial API and implementation
//
package org.eclipse.persistence.jpa.jpql.tools.model.query;
import org.eclipse.persistence.jpa.jpql.parser.EntryExpression;
import static org.eclipse.persistence.jpa.jpql.parser.Expression.*;
/**
* This object represents an identification variable that maps the {@link java.util.Map.Entry Map.Entry})
* of a {@link java.util.Map}.
* <p>
* This is part of JPA 2.0.
*
* <div><p><b>BNF:</b> <code>expression ::= ENTRY(identification_variable)</code></p></div>
*
* @see EntryExpression
*
* @version 2.4
* @since 2.4
* @author Pascal Filion
*/
public class EntryExpressionStateObject extends EncapsulatedIdentificationVariableExpressionStateObject {
/**
* Creates a new <code>EntryExpressionStateObject</code>.
*
* @param parent The parent of this state object, which cannot be <code>null</code>
* @exception NullPointerException The given parent cannot be <code>null</code>
*/
public EntryExpressionStateObject(StateObject parent) {
super(parent);
}
/**
* Creates a new <code>EntryExpressionStateObject</code>.
*
* @param parent The parent of this state object, which cannot be <code>null</code>
* @param identificationVariable The identification variable
* @exception NullPointerException The given parent cannot be <code>null</code>
*/
public EntryExpressionStateObject(StateObject parent, String identificationVariable) {
super(parent, identificationVariable);
}
@Override
public void accept(StateObjectVisitor visitor) {
visitor.visit(this);
}
@Override
public EntryExpression getExpression() {
return (EntryExpression) super.getExpression();
}
@Override
public String getIdentifier() {
return ENTRY;
}
/**
* Keeps a reference of the {@link EntryExpression 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 EntryExpression parsed object} representing an <code><b>ENTRY</b></code>
* expression
*/
public void setExpression(EntryExpression expression) {
super.setExpression(expression);
}
}