他のリストのキー値に基づいてデータをリストに追加したい。ループオーバー。
List<FieldProperty> orderedList = new ArrayList<FieldProperty>();
for (int i = 0; i < auditMap.size(); i++) {
String auditKey = auditMap.get(i).getKey();
for (int j = 0; j < oldValues.size(); j++) {
String oldAuditKey = oldValues.get(i).getKey();
String oldAuditValue = oldValues.get(i).getValue();
if (auditKey.equals(oldAuditKey)) {
orderedList.set(j, ???);
}
}
}