com.gabrielittner.auto.value.cursor.ColumnName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auto-value-cursor-annotations Show documentation
Show all versions of auto-value-cursor-annotations Show documentation
AutoValue extension to create an AutoValue object from a Cursor
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();
}