Package org.dayatang.domain

Examples of org.dayatang.domain.Value


        Value.dateValue("cccc-01-15").getDate();
    }

    @Test
    public void testEquals() {
        Value value1 = Value.intValue("12");
        Value value2 = Value.bigDecimalValue("12");
        Value value3 = Value.intValue("13");
        assertTrue(value1.equals(Value.intValue("12")));
        assertFalse(value1.equals("12"));
        assertFalse(value1.equals(value2));
        assertFalse(value1.equals(value3));
    }
View Full Code Here

TOP

Related Classes of org.dayatang.domain.Value

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.