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