Uses of Interface
biz.janux.geography.StateProvince

Packages that use StateProvince
biz.janux.geography The biz.janux.geography package aims to support the handling and storing of Postal Addresses in the context of managing contact methods for Person and Organizations; in the future, it may be extended to provide functionality for searching by geographic coordinates; the functionality of this package is exposed via the GeographyService Service Facade. 
 

Uses of StateProvince in biz.janux.geography
 

Classes in biz.janux.geography with type parameters of type StateProvince
 interface StateProvinceDaoGeneric<T extends StateProvince>
          Dao used to retrieve and save StateProvince Entities
 

Methods in biz.janux.geography that return StateProvince
 StateProvince StateProvinceDaoGeneric.findByCode(String countryCode, String stateCode)
          retrieves a State using a country code and state code, where the country code is a standard ISO code, or returns null if a State with that state and country code is not found
 StateProvince StateProvinceDao.findByCode(String countryCode, String stateCode)
          Deprecated. retrieves a State using a country code and state code, where the country code is a standard ISO code, or returns null if a State with that state and country code is not found
 StateProvince StateProvinceDaoGeneric.findByName(String countryCode, String stateName)
          retrieves a State by performing a cap-insensitive search by name, within a country with the specified ISO country code, or returns null if a State with that name is not found TODO: this may have to be internationalized
 StateProvince StateProvinceDao.findByName(String countryCode, String stateName)
          Deprecated. retrieves a State by performing a cap-insensitive search by name, within a country with the specified ISO country code, or returns null if a State with that name is not found TODO: this may have to be internationalized
 StateProvince GeographyService.findStateByCode(String countryCode, String stateCode)
          retrieves a State using a country code and state code, where the country code is a standard ISO code, or returns null if a State with those codes is not found
 StateProvince GeographyService.findStateByName(String countryCode, String stateName)
          retrieves a State by performing a cap-insensitive search by name, within a country with the specified ISO country code, or returns null if a State with that name is not found
 StateProvince City.getProvince()
          alias for getState
 StateProvince City.getState()
           
 StateProvince PostalAddress.getStateProvince()
          StateProvince in which this PostalAddress is located; if getCity or getCountry fields ane not null, all three of these entities must be congruent.
 StateProvince StateProvinceDao.load(Integer id)
          Deprecated. load a StateProvince object from persistence using its id
 StateProvince GeographyService.loadUnknownState(String countryCode)
          loads the State object used to link City and Country in the event that the specific StateProvince to which the City belongs has not been defined
 

Methods in biz.janux.geography that return types with arguments of type StateProvince
 Map<String,StateProvince> StateProvinceDaoGeneric.findByCountry(String countryCode)
          retrieves a Map of StateProvince objects that exist within a specific Country in the system, and indexed by the code assigned to the StateProvince within that Country; ordering of the Map returned is left to the implementing class
 Map<String,StateProvince> StateProvinceDao.findByCountry(String countryCode)
          Deprecated. retrieves a Map of StateProvince objects that exist within a specific Country in the system, and indexed by the code assigned to the StateProvince within that Country; ordering of the Map returned is left to the implementing class
 

Methods in biz.janux.geography with parameters of type StateProvince
 City CityDao.findByName(StateProvince state, String cityName)
          Deprecated. retrieves a City within a country and state by performing a cap-insensitive search by name, or returns null if a City with that name is not found
 City CityDaoGeneric.findByName(StateProvince state, String cityName)
          retrieves a City within a country and state by performing a cap-insensitive search by name, or returns null if a City with that name is not found
 City GeographyService.findCityByName(StateProvince state, String cityName)
          retrieves a City within a country and state by performing a cap-insensitive search by name, or returns null if a City with that name is not found
 City GeographyService.newCity(StateProvince state, String cityName)
          instantiates a new City within the specified StateProvince, with the name provided
 City CityDao.newCity(StateProvince state, String cityName)
          Deprecated. instantiates a new City within the specified StateProvince, with the name provided
 City CityDaoGeneric.newCity(StateProvince state, String cityName)
          instantiates a new City within the specified StateProvince, with the name provided
 void City.setProvince(StateProvince o)
           
 void City.setState(StateProvince o)
           
 void PostalAddress.setStateProvince(StateProvince o)
           
 



Copyright © 2005-2013 Janux. All Rights Reserved.