- Nls - Annotation Type in org.jetbrains.annotations
-
Specifies that an element of the program is a user-visible string which needs to be localized,
or does not contain such strings.
- NonNls - Annotation Type in org.jetbrains.annotations
-
Specifies that an element of the program is not a user-visible string which needs to be localized,
or does not contain such strings.
- NotNull - Annotation Type in org.jetbrains.annotations
-
An element annotated with NotNull claims null
value is forbidden
to return (for methods), pass to (parameters) and hold (local variables and fields).
- Nullable - Annotation Type in org.jetbrains.annotations
-
An element annotated with Nullable claims null
value is perfectly valid
to return (for methods), pass to (parameters) and hold (local variables and fields).