/** @inheritdoc */
 @Override
 protected void bindValues(SQLiteStatement stmt, Natures entity) {
   stmt.clearBindings();
   stmt.bindLong(1, entity.getId());
   stmt.bindString(2, entity.getIdentifier());
   stmt.bindLong(3, entity.getDecreasedStatId());
   stmt.bindLong(4, entity.getIncreasedStatId());
   stmt.bindLong(5, entity.getHatesFlavorId());
   stmt.bindLong(6, entity.getLikesFlavorId());
   stmt.bindLong(7, entity.getGameIndex());
 }