All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.creditdatamw.zerocell.annotation.RowNumber Maven / Gradle / Ivy

There is a newer version: 0.5.1
Show newest version
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