Package org.boris.expr.function.excel

Examples of org.boris.expr.function.excel.MINUTE


            int minute, int second, int weekday) throws ExprException {
        assertEquals("testing " + date, eval(new DAY(), date), (double) day);
        assertEquals("testing " + date, eval(new MONTH(), date), (double) month);
        assertEquals("testing " + date, eval(new YEAR(), date), (double) year);
        assertEquals("testing " + date, eval(new HOUR(), date), (double) hour);
        assertEquals("testing " + date, eval(new MINUTE(), date),
                (double) minute);
        assertEquals("testing " + date, eval(new SECOND(), date),
                (double) second);
        assertEquals("testing " + date, eval(new WEEKDAY(), date),
                (double) weekday);
View Full Code Here

TOP

Related Classes of org.boris.expr.function.excel.MINUTE

Copyright © 2018 www.massapicom. 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.