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

com.gabrielittner.auto.value.cursor.ColumnName Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.gabrielittner.auto.value.cursor;

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

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.SOURCE;

@Retention(SOURCE)
@Target({METHOD, FIELD})
public @interface ColumnName {
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy