import java.util.Map; import java.util.Set; import java.util.TreeSet; import java.util.concurrent.atomic.LongAdder; class Test { { Set> sort = new TreeSet<>((x, y) -> Integer.compare(x.getValue(), y.getValue())); Set> sort2 = new TreeSet<>((x, y) -> Long.compare(x.getValue().longValue(), y.getValue().longValue())); Set> sort3 = new TreeSet<>((x, y) -> { return Integer.compare(x.getValue(), y.getValue()); }); Set> sort4 = new TreeSet<>((x, y) -> { return Long.compare(x.getValue().longValue(), y.getValue().longValue()); }); } }