Home | History | Annotate | Download | only in phonenumberproto

Lines Matching refs:matchType

29 import com.google.i18n.phonenumbers.PhoneNumberUtil.MatchType;
108 * <li>are a {@link MatchType#SHORT_NSN_MATCH}, {@link MatchType#NSN_MATCH}, or {@link
109 * MatchType#EXACT_MATCH}, and
163 MatchType matchType = phoneNumberUtil.isNumberMatch(phoneNumber1, phoneNumber2);
165 return (matchType == MatchType.SHORT_NSN_MATCH
166 || matchType == MatchType.NSN_MATCH
167 || matchType == MatchType.EXACT_MATCH)