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

com.github.bingoohuang.excel2beans.annotations.ExcelColTitle Maven / Gradle / Ivy

There is a newer version: 0.0.34
Show newest version
package com.github.bingoohuang.excel2beans.annotations;

import java.lang.annotation.*;

/**
 * Set title substring for excel column value mapping.
 */
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ExcelColTitle {
    /**
     * keyword contained in column title.
     *
     * @return title keyword.
     */
    String value() default "";

    /**
     * The column with title in excel should be required.
     *
     * @return true required.
     */
    boolean required() default true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy