/**
  * Reads a Long out of a field in a Cursor and writes it to a Map.
  *
  * @param cursor The cursor to read from
  * @param field The INTEGER field to read
  * @param values The {@link ContentValues} to put the value into, with the field as the key
  */
 public static void cursorLongToContentValues(Cursor cursor, String field, ContentValues values) {
   cursorLongToContentValues(cursor, field, values, field);
 }