switch(cli) {
case 0: return PhoneConstants.PRESENTATION_ALLOWED;
case 1: return PhoneConstants.PRESENTATION_RESTRICTED;
case 2: return PhoneConstants.PRESENTATION_UNKNOWN;
default:
// This shouldn't happen, just log an error and treat as Unknown
Rlog.d(LOG_TAG, "Unexpected presentation " + cli);
return PhoneConstants.PRESENTATION_UNKNOWN;
}