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

org.greenrobot.greendao.annotation.Id Maven / Gradle / Ivy

The newest version!
package org.greenrobot.greendao.annotation;

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

/**
 * Marks field is the primary key of the entity's table
 */
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.FIELD)
public @interface Id {
    /**
     * Specifies that id should be auto-incremented (works only for Long/long fields)
     * Autoincrement on SQLite introduces additional resources usage and usually can be avoided
     * @see SQLite documentation
     */
    boolean autoincrement() default false;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy