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

io.github.sskorol.data.FieldName Maven / Gradle / Ivy

package io.github.sskorol.data;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Use this annotation to specify CSV field's name. Just to avoid breaking Java fields name convention.
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface FieldName {

    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy