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

com.poiji.annotation.DisableCellFormatXLS 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;

/**
 * Indicates that a field/column ignores its custom cell format in a xls excel file.
 *
 * Created by hakan on 18/07/2020.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@Documented
public @interface DisableCellFormatXLS {

    /**
     * true disable cell format of a cell, otherwise false
     *
     * @return disable cell format or not
     */
    boolean value() default true;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy