Searched refs:state (Results 1 - 4 of 4) 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
29 private String state; field in class:PostalCodeEntry
38 * @param state the state.
41 public PostalCodeEntry(int postalCode, String city, String state, int type) { argument
46 this.state = state;
76 * Returns the two-letter abbreviation for the state associated
80 * @return the two-letter abbreviation for the state associated
84 return state;
[all...]
H A DDiskStrategy.java61 String state = dataFile.readUTF();
64 result.add(new PostalCodeEntry(postalCode,city,state,type));
H A DInMemoryStrategy.java59 String state = dfRan.readUTF();
62 postalCodes.add(new PostalCodeEntry(pc,city,state,type));
H A DReadOnceStrategy.java63 String state = dataFile.readUTF();
66 result.add(new PostalCodeEntry(postalCode,city,state,type));

Completed in 3 milliseconds