org.swiftboot.sheet.annatation.Mapping Maven / Gradle / Ivy
package org.swiftboot.sheet.annatation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Mapping between cell(s) in worksheet and one field of data object.
*
* @author swiftech
*/
@Target({ElementType.FIELD})
@Retention(RUNTIME)
@Documented
public @interface Mapping {
String value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy