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