[#5242] Pull up method to TableImpl, at least

This commit is contained in:
lukaseder 2016-05-24 15:34:30 +02:00
parent e5982f61e9
commit d2b4ef6a93

View File

@ -211,6 +211,10 @@ public class TableImpl<R extends Record> extends AbstractTable<R> {
}
}
public Table<R> rename(String rename) {
return new TableImpl<R>(rename, getSchema());
}
/**
* Subclasses must override this method if they use the generic type
* parameter <R> for other types than {@link Record}