Searched defs:city (Results 1 - 2 of 2) sorted by relevance

/org.ahmadsoft.jpostal-1.0.44/src/org/ahmadsoft/postal/
H A DPostalCodeEntry.java22 * Represents a USPS recognized city, state, postal code combination. Instances
30 private String city; field in class:PostalCodeEntry
37 * @param city the city name.
41 public PostalCodeEntry(int postalCode, String city, String state, int type) { argument
43 this.city = city;
50 * Returns the city associated with this entry.
51 * @return the city associated with this entry.
54 return city;
[all...]
H A DUSPostalCodeService.java110 * Returns the <code>PostalCodeEntry</code> for the actual city
113 * city name associated with it, as well as several other names
118 * the official city for the 90064 postal code. Rancho Park, CA
122 * @return the <code>PostalCodeEntry</code> for the actual city
146 * @param city the city to match.
147 * @param postalCode the postal code within which to match the city.
148 * @return the closest matches to the specified city within the specified
152 public List match(String city, int postalCode) { argument
153 return match(city, postalCod
172 match(String city, int postalCode, MatchOptions options) argument
[all...]

Completed in 5 milliseconds