列 (数量) には、double 型と N/A 型の値もいくつかあります。
私のコンパレータクラスのcompareメソッドでは、これは以下のコーディングです
if(double1 == double2) {
return 0;
}
// We know that both aren't null, so if only long 2 is null, 1 > 2
if(double2 == null) {
return 1;
}
// We know that both aren't null, so if only long 1 is null, 1 < 2
if(double1 == null) {
return -1;
}
// Nulls are handled, use the native compare
return double1.compareTo(double2);
double1 と double2 は Double 型です。
Exception: java.lang.NumberFormatException: For input string: "N/A" を返します。
解決策を教えてください。