在檢查屬性的值我有一個POJO:遍歷自定義列表和每個索引
public class BrokerInvoiceLineItem {
private Date dealDate;
private String brokerRefId;
private String receiverName;
private double notional;
private double fixedRate;
private Date maturityDate;
private double amount;
}
這些的POJO的列表是通過一種方法取出,如下所示:
List<BrokerInvoiceLineItem> finalBrokerInvoiceLineItemList = brokerInvoice.getLineItems();
我如果存儲在列表中的POJO中的任何字段爲空,則需要拋出異常。
我應該如何遍歷finalBrokerInvoiceLineItemList併爲每個項目檢查上述字段的值,並拋出一個異常,如果其中任何一個爲空。
問題是什麼? –
@gfgfhjfgjgng,請檢查我的編輯,如果需要回滾。 – Basilevs