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

com.creditdatamw.zerocell.annotation.ZerocellReaderBuilder Maven / Gradle / Ivy

There is a newer version: 0.5.1
Show newest version
package com.creditdatamw.zerocell.annotation;

import java.lang.annotation.*;

/**
 * Marker annotation for a class that Generates a ZeroCell Reader
 *
 */
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.TYPE)
@Documented
public @interface ZerocellReaderBuilder {
    /**
     * Gets the name of the generated Reader class, which
     * defaults to the name of the class with suffix of "Reader" e.g. PersonReader
     *
     * @return The name of the generated Reader class.
     */
    String value() default "__none__";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy