私はコードの下にある問題を抱えています
public void columnsList(List<TableRecord> records){
for(TableRecord record : records){
Table table = record.getTable();
//Do sort here on stampDate
Field[] fields = table.fields();
for(Field field : fields){
field.getName();
record.getValue(field);
}
}
}
およびrecords
オブジェクトには、異なるクラス型のオブジェクトが含まれています
List<TableRecord> records = new List<TableRecord>();
records.add(new AddressRecord());
records.add(new CityRecord());
records.add(new UserRecord());
stampDate
各クラスにある変数でそれらをソートする方法