/** {@inheritDoc} */
  @Override
  @SuppressWarnings("unchecked")
  public T handle(QueryImpl<?> query, SessionImpl session, ResultSet row) throws SQLException {
    final T value = query.getParameterValue(this);

    return (T) (this.getConverter() != null ? this.getConverter().convert(value) : value);
  }