NullablePrimitive
Nullness annotations should not be used for primitive types since they cannot be null

Severity
WARNING
Tags
Style

The problem

Primitives can never be null.

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("NullablePrimitive") to the enclosing element.