![JAR search and dependency download from the Maven repository](/logo.png)
org.simpleflatmapper.csv.property.CustomReaderFactoryProperty Maven / Gradle / Ivy
package org.simpleflatmapper.csv.property;
import org.simpleflatmapper.csv.CellValueReaderFactory;
import static org.simpleflatmapper.util.Asserts.requireNonNull;
public class CustomReaderFactoryProperty {
private final CellValueReaderFactory readerFactory;
public CustomReaderFactoryProperty(CellValueReaderFactory readerFactory) {
this.readerFactory = requireNonNull("readerFactory", readerFactory);
}
public CellValueReaderFactory getReaderFactory() {
return readerFactory;
}
@Override
public String toString() {
return "CellValueReaderFactory{CellValueReaderFactory}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy