you can sort a List using Collections.sort
.
given your Fund
:
List sortMe = new ArrayList(...);
Collections.sort(sortMe, new Comparator() {
@Override
public int compare(Fund left, Fund right) {
return left.fundValue.compareTo(right.fundValue);
}
});
// sortMe is now sorted