我想按照对象属性的值对hashmap中的条目进行排序。
这是我的HashMap:
final Map<String, Seasons> = new HashMap<>();
这是我的季节课:
public class Seasons {
private int results;
private int scores;
private int points;
public Seasons() {
}
//getters and setters
}
所以我想根据每个条目'points'对hashmap进行排序。
我已经看到了被标记为可能重复的主题。我尝试使用它但无法适应它在我的情况下使用它。