convertMsgRecvOpt static method

int convertMsgRecvOpt(
  1. String opt
)

Implementation

static int convertMsgRecvOpt(String opt) {
  if (opt == MSG_REMIND_ACPT_AND_NOTE) {
    return 0;
  }

  if (opt == MSG_REMIND_DISCARD) {
    return 1;
  }

  if (opt == MSG_REMIND_ACPT_NOT_NOTE) {
    return 2;
  }
  return 0;
}