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

com.opencsv.bean.CsvBindByPositions Maven / Gradle / Ivy

There is a newer version: 5.9
Show newest version
package com.opencsv.bean;

import java.lang.annotation.*;

/**
 * This annotation is the container annotation for {@link CsvBindByPosition}.
 * @author Andrew Rucker Jones
 * @since 5.4
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface CsvBindByPositions {
    /** @return An array of {@link CsvBindByPosition}. */
    CsvBindByPosition[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy