
net.sf.xmlform.expression.FloatNumeric Maven / Gradle / Ivy
package net.sf.xmlform.expression;
import java.math.BigDecimal;
/**
* @author Liu Zhikun
*/
public class FloatNumeric extends Numeric {
public Value eval(ExpressionContext context) {
return new FloatValue(new BigDecimal(getNumber()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy