@Documented
@Retention(CLASS)
@Target({METHOD,FIELD,PARAMETER,LOCAL_VARIABLE})
public @interface NotNull
null value is forbidden
to return (for methods), pass to (parameters) and hold (local variables and fields).
Apart from documentation purposes this annotation is intended to be used by static analysis tools
to validate against probable runtime errors and element contract violations.java.lang.Class<? extends java.lang.Exception> exception
IllegalArgumentException is thrown on null method arguments and
IllegalStateException — on null return value.Copyright © 2012–2018 MARID software development group. All rights reserved.