Package com.hazelcast.core

Examples of com.hazelcast.core.MultiMap.values()


    }

    @Test
    public void testValues_whenEmptyCollection() {
        final MultiMap mm = client.getMultiMap(randomString());
        assertEquals(Collections.EMPTY_LIST, mm.values());
    }

    @Test
    public void testKeyValues() {
        final int maxKeys = 31;
View Full Code Here


                mm.put(key, val);
                expected.add(val);
            }
        }

        Set resultSet = new TreeSet( mm.values() );

        assertEquals(expected, resultSet);
    }

    @Test
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.