Basically I try to extract only the 2nd element from the list of tuples. Scala has a very nice solution to this (which somewhat looks like this x._2) but I don't know how I can do this in Java.
public static ArrayList<House> house = new ArrayList<>(Arrays.asList(new House(321321, 2.5),
new House(456544, 3.0),
new House(789687, 4.0));