org.javafunk.excelparser.annotations.ExcelField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-parser Show documentation
Show all versions of excel-parser Show documentation
Annotations for Excel document parsing.
The newest version!
package org.javafunk.excelparser.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(value = RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface ExcelField {
int position();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy