
org.greenrobot.greendao.annotation.JoinProperty 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.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Defines name and referencedName properties for relations
*
* @see ToMany
*/
@Retention(RetentionPolicy.SOURCE)
@Target({})
public @interface JoinProperty {
/** Name of the property in the name entity, which matches {@link #referencedName()} */
String name();
/** Name of the property in the referencedName entity, which matches {@link #name()} */
String referencedName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy