![JAR search and dependency download from the Maven repository](/logo.png)
com.github.bingoohuang.instantiator.ConstructorBeanInstantiator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel2javabeans Show documentation
Show all versions of excel2javabeans Show documentation
a little utility to convert excel rows to java beans
package com.github.bingoohuang.instantiator;
import lombok.AllArgsConstructor;
import lombok.SneakyThrows;
import java.lang.reflect.Constructor;
@AllArgsConstructor
public class ConstructorBeanInstantiator implements BeanInstantiator {
private final Constructor constructor;
@SuppressWarnings("unchecked")
@SneakyThrows @Override public T newInstance() {
return constructor.newInstance();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy