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

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

/**
 * Specifies that property is not null
 * 

* You can also use any another NotNull or NonNull annotation (from any library or your own), * they are equal to using this *

*/ @Retention(RetentionPolicy.SOURCE) @Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER}) public @interface NotNull { }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy