com.github.skjolber.stcsv.projection.ValueProjection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databinder Show documentation
Show all versions of databinder Show documentation
High-performance CSV databinding library
package com.github.skjolber.stcsv.projection;
import org.objectweb.asm.MethodVisitor;
public interface ValueProjection {
void write(MethodVisitor mv, String subClassInternalName, int endIndex);
}