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

com.redhat.ceylon.common.NonNull Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.common;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.LOCAL_VARIABLE;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.CLASS;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

@Retention(CLASS)
@Target({ FIELD, METHOD, PARAMETER, LOCAL_VARIABLE })
//WARNING: that class is used by name in Resolve.java
public @interface NonNull {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy