...
- Calling the instance method of a null object
- Accessing or modifying the field of a null object
- Taking the length of
null
as if it were an array - Accessing or modifying the elements of
null
as if it were an array - Throwing
null
as if it were aThrowable
value
...
Method isProperName
()
is noncompliant because it may be called with a null argument, resulting in a null pointer dereference.
...