This commit is contained in:
@@ -181,8 +181,10 @@ public abstract class Factory<R extends Reader, W extends Writer> {
|
|||||||
skipIgnores.add(type);
|
skipIgnores.add(type);
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean register(final Class type, String column, boolean ignore) {
|
public final void register(final Class type, boolean ignore, String... columns) {
|
||||||
return register(type, column, new ConvertColumnEntry(column, ignore));
|
for (String column : columns) {
|
||||||
|
register(type, column, new ConvertColumnEntry(column, ignore));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean register(final Class type, String column, ConvertColumnEntry entry) {
|
public final boolean register(final Class type, String column, ConvertColumnEntry entry) {
|
||||||
|
|||||||
Reference in New Issue
Block a user