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

com.poiji.annotation.ExcelSheet Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package com.poiji.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation to set the sheet name to be processed.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
public @interface ExcelSheet {
    /**
     * Specifies the name of the sheet that is to be processed.
     * @return the sheet name.
     */
    String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy