Package ej.annotation
Annotation Type NonNullByDefault
-
@Documented @Retention(RUNTIME) @Target({PACKAGE,TYPE,METHOD,CONSTRUCTOR}) public @interface NonNullByDefault
Indicates that all fields, method return values or parameters can never benullin the annotated package or type.This rule can be overridden on each element by using
Nullableannotation.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description booleanvalueWhen annotating an element with@NonNullByDefault(false), the default null annotation is not applied.
-