org.simpleflatmapper.csv.mapper.DelayedCellSetter Maven / Gradle / Ivy
package org.simpleflatmapper.csv.mapper;
import org.simpleflatmapper.csv.ParsingContext;
public interface DelayedCellSetter {
void set(char[] chars, int offset, int length, ParsingContext parsingContext) throws Exception;
P consumeValue();
P peekValue();
void set(T t) throws Exception;
boolean isSettable();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy