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

com.github.frontear.internal.NotNull Maven / Gradle / Ivy

There is a newer version: 0.2.8
Show newest version
package com.github.frontear.internal;

import java.lang.annotation.*;

/**
 * Represents something that can never be null. This can be used on parameters, and/or methods.
 * Please see https://www.jetbrains.com/help/idea/nullable-and-notnull-annotations.html#notnull
 * for more information, including how to set these up.
 */
@Target({ ElementType.PARAMETER, ElementType.METHOD })
@Retention(RetentionPolicy.SOURCE)
public @interface NotNull {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy