Examples of SimpleNumber


Examples of freemarker.template.SimpleNumber

        if (index < 0 || index >= size()) {
            throw new _TemplateModelException(new Object[] {
                    "Range item index ", new Integer(index), " is out of bounds." });
        }
        long value = begin + getStep() * (long) index;
        return value <= Integer.MAX_VALUE ? new SimpleNumber((int) value) : new SimpleNumber(value);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.