
com.github.smartbuf.converter.BeanInfo Maven / Gradle / Ivy
package com.github.smartbuf.converter;
import com.github.smartbuf.reflect.BeanWriter;
/**
* BeanInfo helps convert map or objectnode to T
*
* @author sulin
* @since 2019-11-11 17:59:11
*/
public final class BeanInfo {
private final BeanWriter writer;
private final Object[] values;
public BeanInfo(BeanWriter writer, Object[] values) {
this.writer = writer;
this.values = values;
}
public BeanWriter getWriter() {
return writer;
}
public Object[] getValues() {
return values;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy