Пример #1
0
 String getBuildValue(Building b, Building b2) {
   for (Entry<Short, Float> buildValue : b.neighbors_BuildValue().entrySet()) {
     if (buildValue.getKey() == b2.getBuildingIndex()) return buildValue.getValue() + "";
   }
   return "-";
 }