コード例 #1
0
 /**
  * Sets the {@code Date} 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 Date field.
  */
 public void setDate(String fieldName, Date value) {
   long columnIndex = row.getColumnIndex(fieldName);
   row.setDate(columnIndex, value);
 }