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

org.greenrobot.greendao.annotation.Transient 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.Target;

import static java.lang.annotation.RetentionPolicy.SOURCE;

/**
 * Transient fields are not persisted in the database.
 */
@Retention(SOURCE)
@Target(ElementType.FIELD)
public @interface Transient {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy