Package org.castor.core.util

Examples of org.castor.core.util.IdentityMap.clear()


        map.put(new Integer(123), "value");
        assertFalse(map.isEmpty());
        assertTrue(map.size() == 1);
       
        map.clear();
        assertTrue(map.isEmpty());
        assertTrue(map.size() == 0);
    }

    public void testContainsKey() {
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.