@Override public final <Z extends Record> Result<Z> into(Table<Z> table) { Result<Z> list = new ResultImpl<Z>(getConfiguration(), table.fields()); for (R record : this) { list.add(record.into(table)); } return list; }
public TableRecordImpl(Table<R> table) { super(table.fields()); this.table = table; }