blob: 5098eb60d065869453920c8a80709a05524c69e2 [file] [log] [blame]
/*
* Copyright (c) 2006, 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.parser;
import java.util.List;
import org.eclipse.persistence.jpa.jpql.ExpressionTools;
import org.eclipse.persistence.jpa.jpql.WordParser;
/**
* Exact numeric literals support the use of Java integer literal syntax as well as SQL exact
* numeric literal syntax. Approximate literals support the use of Java floating point literal
* syntax as well as SQL approximate numeric literal
* syntax.
* <p>
* Appropriate suffixes may be used to indicate the specific type of a numeric literal in accordance
* with the Java Language Specification.
*
* @version 2.5
* @since 2.3
* @author Pascal Filion
*/
public final class NumericLiteral extends AbstractExpression {
/**
* Creates a new <code>NumericLiteral</code>.
*
* @param parent The parent of this expression
*/
public NumericLiteral(AbstractExpression parent) {
super(parent);
}
/**
* Creates a new <code>NumericLiteral</code>.
*
* @param parent The parent of this expression
* @param numeric The numeric value
*/
public NumericLiteral(AbstractExpression parent, String numeric) {
super(parent, numeric);
}
@Override
public void accept(ExpressionVisitor visitor) {
visitor.visit(this);
}
@Override
public void acceptChildren(ExpressionVisitor visitor) {
}
@Override
protected void addOrderedChildrenTo(List<Expression> children) {
children.add(buildStringExpression(getText()));
}
@Override
public JPQLQueryBNF getQueryBNF() {
return getQueryBNF(NumericLiteralBNF.ID);
}
@Override
public String getText() {
return super.getText();
}
@Override
protected void parse(WordParser wordParser, boolean tolerant) {
String numeric = getText();
if (numeric == ExpressionTools.EMPTY_STRING) {
numeric = wordParser.numericLiteral();
setText(numeric);
}
wordParser.moveForward(numeric);
}
@Override
public String toActualText() {
return getText();
}
@Override
public String toParsedText() {
return getText();
}
@Override
protected void toParsedText(StringBuilder writer, boolean actual) {
writer.append(getText());
}
}