
org.sfm.csv.impl.ParsingContext Maven / Gradle / Ivy
package org.sfm.csv.impl;
public class ParsingContext {
private final Object[] context;
public ParsingContext(Object[] context) {
this.context = context;
}
public Object getContext(int index) {
return context == null ? null : context[index];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy