
org.greenrobot.greendao.annotation.Unique Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greendao-encryption Show documentation
Show all versions of greendao-encryption Show documentation
greenDAO is a light and fast ORM for Android
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 property should have a UNIQUE constraint during table creation.
* This annotation is also applicable with @ToOne without additional foreign key property
*
*
* To have a unique constraint after table creation you can use {@link Index#unique()}
*
*
*
* Note having both @Unique and {@link Index} is redundant and causes performance decrease
* on DB level. See here for more information.
*
*
* @see Index#unique()
*/
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.FIELD)
public @interface Unique {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy