Maybe Missing Case for Switch Statement (MMCSS)

Description:

MMCSS detects if it is not all values in the range of the switch selector expression have corresponding case labels. This message will be never produced for a switch statement that has the default label.

Example:

   int i = -1;
   switch (i) {
     case 0:
       ...
     case 1:
       ...
   }