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

xyz.proteanbear.template.annotation.PbPOIExcel Maven / Gradle / Ivy

The newest version!
package xyz.proteanbear.template.annotation;

import java.lang.annotation.*;

/**
 * Custom annotations mark Excel file attributes.
 *
 * @author ProteanBear
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface PbPOIExcel
{
    /**
     * @return The title of the sheet,using for exporting a excel file.
     */
    String sheetTitle() default "sheet";

    /**
     * 

Set excel title line's number(start from 0)

*

Start calculate from not null row

*

If not title row,set -1.

* * @return line's number(start from 0) */ int titleLine() default 0; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy