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

net.sf.xmlform.expression.FloatNumeric Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
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