Example #1
0
 public void addCellPhone(String cellPhone) {
   if (StrUtil.isEmpty(cellPhone)) {
     return;
   }
   if (StrUtil.isNumber(cellPhone) && cellPhone.length() <= 15 && cellPhone.length() >= 11) {
     cellPhones.add(cellPhone);
   }
 }