/** @inheritdoc */
 @Override
 public Long getKey(ItemFlingEffects entity) {
   if (entity != null) {
     return entity.getId();
   } else {
     return null;
   }
 }
 /** @inheritdoc */
 @Override
 protected void bindValues(SQLiteStatement stmt, ItemFlingEffects entity) {
   stmt.clearBindings();
   stmt.bindLong(1, entity.getId());
 }