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

org.swiftboot.sheet.annatation.Mapping Maven / Gradle / Ivy

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