本文整理汇总了Java中java.util.TreeMap.floorEntry方法的典型用法代码示例。如果您正苦于以下问题:Java TreeMap.floorEntry方法的具体用法?Java TreeMap.floorEntry怎么用?Java TreeMap.floorEntry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.util.TreeMap
的用法示例。
在下文中一共展示了TreeMap.floorEntry方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getLocation
import java.util.TreeMap; //导入方法依赖的package包/类
@Override
public Location getLocation(int deviceId, double time) {
TreeMap<Double, Location> treeMap = treeMapArray.get(deviceId);
Entry<Double, Location> e = treeMap.floorEntry(time);
if(e == null){
SimLogger.printLine("impossible is occured! no location is found for the device!");
System.exit(0);
}
return e.getValue();
}
示例2: findPartForTime
import java.util.TreeMap; //导入方法依赖的package包/类
private static AnimationPart findPartForTime(TreeMap<Integer,AnimationPart> parts, int time)
{
Map.Entry<Integer, AnimationPart> entry = parts.floorEntry(time);
if (entry != null)
{
return entry.getValue();
}
return null;
}
示例3: testFloorEntry
import java.util.TreeMap; //导入方法依赖的package包/类
/**
* floorEntry returns preceding entry.
*/
public void testFloorEntry() {
TreeMap map = map5();
Map.Entry e1 = map.floorEntry(three);
assertEquals(three, e1.getKey());
Map.Entry e2 = map.floorEntry(six);
assertEquals(five, e2.getKey());
Map.Entry e3 = map.floorEntry(one);
assertEquals(one, e3.getKey());
Map.Entry e4 = map.floorEntry(zero);
assertNull(e4);
}