Uses of Class
stresstests.datasets.City

Packages that use City
stresstests.datasets   
 

Uses of City in stresstests.datasets
 

Fields in stresstests.datasets declared as City
protected  City TraversalInFile.c
          a city object to hold values
protected  City[] TraversalOutFile.cities
          the list of cities to output
 

Methods in stresstests.datasets that return City
 City TraversalOutFile.getFirst()
          return the most recent city processed - if available
 City TraversalInFile.getFirst()
          return the most recent submission - if available
 

Methods in stresstests.datasets that return types with arguments of type City
 Traversal<City> TraversalOutFile.getRest()
          process next item, if available
 Traversal<City> TraversalInFile.getRest()
          produce a traversal for the rest of this list
 

Methods in stresstests.datasets with parameters of type City
 int ComparatorByZip.compare(City city1, City city2)
          compare the two given city objects by zip code only
 int ComparatorByName.compare(City city1, City city2)
          compare the two given city objects by name, state, and zip code
 int ComparatorByLatitude.compare(City city1, City city2)
          compare the two given city objects by their latitude
 boolean City.same(City city)
          determine whether this City is the same as the given City
 

Constructors in stresstests.datasets with parameters of type City
City(City aCity)
          The copy constructor
TraversalOutFile(City[] aCities)
          Select a file where the data will be stored, make sure it can be written.