Home | History | Annotate | Download | only in util

Lines Matching refs:floorEntry

1041      * {@link java.util.TreeMap#floorEntry(Object)
1046 assertEquals(objArray[999], tm.floorEntry(testint9999.toString())
1048 assertEquals(objArray[100], tm.floorEntry(testint10000.toString())
1052 assertEquals(testint9999, tm.floorEntry(testint9999.toString())
1054 Entry entry = tm.floorEntry(testint10000.toString());
1058 tm.floorEntry(testint10000);
1064 tm.floorEntry(null);
1070 assertNull(tm.floorEntry(testint9999.toString()));