Searched refs:type (Results 1 - 4 of 4) sorted by relevance

/org.ahmadsoft.jpostal-1.0.44/src/org/ahmadsoft/postal/
H A DPostalCodeEntry.java39 * @param type the type of entry.
41 public PostalCodeEntry(int postalCode, String city, String state, int type) { argument
44 entryType = type;
58 * Returns the type of this entry. <code><a href="PostalCodeConstants.html">PostalCodeConstants.CITY*</a></code>
61 * @return the type of this entry.
H A DDiskStrategy.java59 short type=0;
60 while (0 != (type=dataFile.readShort())) {
64 result.add(new PostalCodeEntry(postalCode,city,state,type));
H A DInMemoryStrategy.java57 short type=0;
58 while (0 != (type=dfRan.readShort())) {
62 postalCodes.add(new PostalCodeEntry(pc,city,state,type));
H A DReadOnceStrategy.java61 short type=0;
62 while (0 != (type=dataFile.readShort())) {
66 result.add(new PostalCodeEntry(postalCode,city,state,type));

Completed in 4 milliseconds