Home | History | Annotate | Download | only in geocoding

Lines Matching full:numbertype

186     PhoneNumberType numberType = phoneUtil.getNumberType(number);
187 if (numberType == PhoneNumberType.UNKNOWN) {
189 } else if (!canBeGeocoded(numberType)) {
209 PhoneNumberType numberType = phoneUtil.getNumberType(number);
210 if (numberType == PhoneNumberType.UNKNOWN) {
212 } else if (!canBeGeocoded(numberType)) {
223 private boolean canBeGeocoded(PhoneNumberType numberType) {
224 return (numberType == PhoneNumberType.FIXED_LINE ||
225 numberType == PhoneNumberType.MOBILE ||
226 numberType == PhoneNumberType.FIXED_LINE_OR_MOBILE);