コード例 #1
0
 /**
  * Sets the {@code double} value of the given field.
  *
  * @param fieldName the field name.
  * @param value the value to insert.
  * @throws IllegalArgumentException if field name doesn't exists or isn't a double field.
  */
 public void setDouble(String fieldName, double value) {
   long columnIndex = row.getColumnIndex(fieldName);
   row.setDouble(columnIndex, value);
 }