![JAR search and dependency download from the Maven repository](/logo.png)
java.beans.Transient Maven / Gradle / Ivy
package java.beans;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Target({METHOD})
@Retention(RUNTIME)
public @interface Transient {
boolean value() default true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy