com.github.frontear.internal.NotNull Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Efkolia Show documentation
Show all versions of Efkolia Show documentation
A simple framework designed for Minecraft modding
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