DecimalLiteral.java
/*
* SPDX-FileCopyrightText: none
* SPDX-License-Identifier: CC0-1.0
*/
package gov.nist.secauto.metaschema.core.metapath.cst;
import gov.nist.secauto.metaschema.core.metapath.DynamicContext;
import gov.nist.secauto.metaschema.core.metapath.ISequence;
import gov.nist.secauto.metaschema.core.metapath.item.atomic.IDecimalItem;
import java.math.BigDecimal;
import edu.umd.cs.findbugs.annotations.NonNull;
/**
* An implementation of the
* <a href="https://www.w3.org/TR/xpath-31/#id-literals">Decimal Literal
* Expression</a> supporting the creation of a Metapath constant literal
* {@link IDecimalItem}.
*/
public class DecimalLiteral
extends AbstractLiteralExpression<IDecimalItem, BigDecimal> {
/**
* Construct a new expression that always returns the same decimal value.
*
* @param value
* the literal value
*/
public DecimalLiteral(@NonNull BigDecimal value) {
super(value);
}
@Override
public Class<IDecimalItem> getBaseResultType() {
return IDecimalItem.class;
}
@Override
public <RESULT, CONTEXT> RESULT accept(IExpressionVisitor<RESULT, CONTEXT> visitor, CONTEXT context) {
return visitor.visitDecimalLiteral(this, context);
}
// REFACTOR: store decimal item value as a field of this class
@Override
public ISequence<? extends IDecimalItem> accept(DynamicContext dynamicContext, ISequence<?> focus) {
return ISequence.of(IDecimalItem.valueOf(getValue()));
}
}