私はそのような地図を持っています:
Map<Integer, MyEntry> map = new HashMap<Integer, MyEntry>();
MyEntry は次のとおりです。
public class MyEntry {
private String title;
private String value;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
map に値を入れた後、並べ替えたいと思います。最初の要素が最小になり、最後の要素が最大になります。