com.creditdatamw.zerocell.annotation.RowNumber Maven / Gradle / Ivy
package com.creditdatamw.zerocell.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Keep track of the source row number in the excel using this annotation.
* Apply it to an integer type to store the value there
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface RowNumber {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy