Liferay 6.0.5

Uses of Interface
com.liferay.portal.model.Region

Packages that use Region
com.liferay.portal.model   
com.liferay.portal.model.impl   
com.liferay.portal.service   
com.liferay.portal.service.http   
com.liferay.portal.service.impl   
com.liferay.portal.service.persistence   
 

Uses of Region in com.liferay.portal.model
 

Classes in com.liferay.portal.model that implement Region
 class RegionWrapper
           This class is a wrapper for Region.
 

Methods in com.liferay.portal.model that return Region
 Region AddressWrapper.getRegion()
           
 Region Address.getRegion()
           
 Region RegionWrapper.getWrappedRegion()
           
 Region RegionWrapper.toEscapedModel()
           
 Region RegionModel.toEscapedModel()
          Gets a copy of this region as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.
 

Methods in com.liferay.portal.model with parameters of type Region
 int RegionWrapper.compareTo(Region region)
           
 int RegionModel.compareTo(Region region)
           
static RegionSoap RegionSoap.toSoapModel(Region model)
           
static RegionSoap[] RegionSoap.toSoapModels(Region[] models)
           
static RegionSoap[][] RegionSoap.toSoapModels(Region[][] models)
           
 

Method parameters in com.liferay.portal.model with type arguments of type Region
static RegionSoap[] RegionSoap.toSoapModels(List<Region> models)
           
 

Constructors in com.liferay.portal.model with parameters of type Region
RegionWrapper(Region region)
           
 

Uses of Region in com.liferay.portal.model.impl
 

Classes in com.liferay.portal.model.impl that implement Region
 class RegionImpl
           
 

Methods in com.liferay.portal.model.impl that return Region
 Region AddressImpl.getRegion()
           
 Region RegionModelImpl.toEscapedModel()
           
static Region RegionModelImpl.toModel(RegionSoap soapModel)
          Converts the soap model instance into a normal model instance.
 

Methods in com.liferay.portal.model.impl that return types with arguments of type Region
static List<Region> RegionModelImpl.toModels(RegionSoap[] soapModels)
          Converts the soap model instances into normal model instances.
 

Methods in com.liferay.portal.model.impl with parameters of type Region
 int RegionModelImpl.compareTo(Region region)
           
 

Uses of Region in com.liferay.portal.service
 

Methods in com.liferay.portal.service that return Region
 Region RegionServiceWrapper.addRegion(long countryId, String regionCode, String name, boolean active)
           
static Region RegionServiceUtil.addRegion(long countryId, String regionCode, String name, boolean active)
           
 Region RegionService.addRegion(long countryId, String regionCode, String name, boolean active)
           
 Region RegionServiceWrapper.getRegion(long regionId)
           
static Region RegionServiceUtil.getRegion(long regionId)
           
 Region RegionService.getRegion(long regionId)
           
 

Methods in com.liferay.portal.service that return types with arguments of type Region
 List<Region> RegionServiceWrapper.getRegions()
           
static List<Region> RegionServiceUtil.getRegions()
           
 List<Region> RegionService.getRegions()
           
 List<Region> RegionServiceWrapper.getRegions(boolean active)
           
static List<Region> RegionServiceUtil.getRegions(boolean active)
           
 List<Region> RegionService.getRegions(boolean active)
           
 List<Region> RegionServiceWrapper.getRegions(long countryId)
           
static List<Region> RegionServiceUtil.getRegions(long countryId)
           
 List<Region> RegionService.getRegions(long countryId)
           
 List<Region> RegionServiceWrapper.getRegions(long countryId, boolean active)
           
static List<Region> RegionServiceUtil.getRegions(long countryId, boolean active)
           
 List<Region> RegionService.getRegions(long countryId, boolean active)
           
 

Uses of Region in com.liferay.portal.service.http
 

Methods in com.liferay.portal.service.http that return Region
static Region RegionServiceHttp.addRegion(HttpPrincipal httpPrincipal, long countryId, String regionCode, String name, boolean active)
           
static Region RegionServiceHttp.getRegion(HttpPrincipal httpPrincipal, long regionId)
           
 

Methods in com.liferay.portal.service.http that return types with arguments of type Region
static List<Region> RegionServiceHttp.getRegions(HttpPrincipal httpPrincipal)
           
static List<Region> RegionServiceHttp.getRegions(HttpPrincipal httpPrincipal, boolean active)
           
static List<Region> RegionServiceHttp.getRegions(HttpPrincipal httpPrincipal, long countryId)
           
static List<Region> RegionServiceHttp.getRegions(HttpPrincipal httpPrincipal, long countryId, boolean active)
           
 

Methods in com.liferay.portal.service.http with parameters of type Region
static JSONArray RegionJSONSerializer.toJSONArray(Region[] models)
           
static JSONArray RegionJSONSerializer.toJSONArray(Region[][] models)
           
static JSONObject RegionJSONSerializer.toJSONObject(Region model)
           
 

Method parameters in com.liferay.portal.service.http with type arguments of type Region
static JSONArray RegionJSONSerializer.toJSONArray(List<Region> models)
           
 

Uses of Region in com.liferay.portal.service.impl
 

Methods in com.liferay.portal.service.impl that return Region
 Region RegionServiceImpl.addRegion(long countryId, String regionCode, String name, boolean active)
           
 Region RegionServiceImpl.getRegion(long regionId)
           
 

Methods in com.liferay.portal.service.impl that return types with arguments of type Region
 List<Region> RegionServiceImpl.getRegions()
           
 List<Region> RegionServiceImpl.getRegions(boolean active)
           
 List<Region> RegionServiceImpl.getRegions(long countryId)
           
 List<Region> RegionServiceImpl.getRegions(long countryId, boolean active)
           
 

Uses of Region in com.liferay.portal.service.persistence
 

Methods in com.liferay.portal.service.persistence that return Region
static Region RegionUtil.create(long regionId)
          Creates a new region with the primary key.
 Region RegionPersistence.create(long regionId)
          Creates a new region with the primary key.
 Region RegionPersistenceImpl.create(long regionId)
          Creates a new region with the primary key.
static Region RegionUtil.fetchByPrimaryKey(long regionId)
          Finds the region with the primary key or returns null if it could not be found.
 Region RegionPersistence.fetchByPrimaryKey(long regionId)
          Finds the region with the primary key or returns null if it could not be found.
 Region RegionPersistenceImpl.fetchByPrimaryKey(long regionId)
          Finds the region with the primary key or returns null if it could not be found.
 Region RegionPersistenceImpl.fetchByPrimaryKey(Serializable primaryKey)
          Finds the region with the primary key or returns null if it could not be found.
static Region RegionUtil.findByActive_First(boolean active, OrderByComparator orderByComparator)
          Finds the first region in the ordered set where active = ?.
 Region RegionPersistence.findByActive_First(boolean active, OrderByComparator orderByComparator)
          Finds the first region in the ordered set where active = ?.
 Region RegionPersistenceImpl.findByActive_First(boolean active, OrderByComparator orderByComparator)
          Finds the first region in the ordered set where active = ?.
static Region RegionUtil.findByActive_Last(boolean active, OrderByComparator orderByComparator)
          Finds the last region in the ordered set where active = ?.
 Region RegionPersistence.findByActive_Last(boolean active, OrderByComparator orderByComparator)
          Finds the last region in the ordered set where active = ?.
 Region RegionPersistenceImpl.findByActive_Last(boolean active, OrderByComparator orderByComparator)
          Finds the last region in the ordered set where active = ?.
static Region[] RegionUtil.findByActive_PrevAndNext(long regionId, boolean active, OrderByComparator orderByComparator)
          Finds the regions before and after the current region in the ordered set where active = ?.
 Region[] RegionPersistence.findByActive_PrevAndNext(long regionId, boolean active, OrderByComparator orderByComparator)
          Finds the regions before and after the current region in the ordered set where active = ?.
 Region[] RegionPersistenceImpl.findByActive_PrevAndNext(long regionId, boolean active, OrderByComparator orderByComparator)
          Finds the regions before and after the current region in the ordered set where active = ?.
static Region RegionUtil.findByC_A_First(long countryId, boolean active, OrderByComparator orderByComparator)
          Finds the first region in the ordered set where countryId = ? and active = ?.
 Region RegionPersistence.findByC_A_First(long countryId, boolean active, OrderByComparator orderByComparator)
          Finds the first region in the ordered set where countryId = ? and active = ?.
 Region RegionPersistenceImpl.findByC_A_First(long countryId, boolean active, OrderByComparator orderByComparator)
          Finds the first region in the ordered set where countryId = ? and active = ?.
static Region RegionUtil.findByC_A_Last(long countryId, boolean active, OrderByComparator orderByComparator)
          Finds the last region in the ordered set where countryId = ? and active = ?.
 Region RegionPersistence.findByC_A_Last(long countryId, boolean active, OrderByComparator orderByComparator)
          Finds the last region in the ordered set where countryId = ? and active = ?.
 Region RegionPersistenceImpl.findByC_A_Last(long countryId, boolean active, OrderByComparator orderByComparator)
          Finds the last region in the ordered set where countryId = ? and active = ?.
static Region[] RegionUtil.findByC_A_PrevAndNext(long regionId, long countryId, boolean active, OrderByComparator orderByComparator)
          Finds the regions before and after the current region in the ordered set where countryId = ? and active = ?.
 Region[] RegionPersistence.findByC_A_PrevAndNext(long regionId, long countryId, boolean active, OrderByComparator orderByComparator)
          Finds the regions before and after the current region in the ordered set where countryId = ? and active = ?.
 Region[] RegionPersistenceImpl.findByC_A_PrevAndNext(long regionId, long countryId, boolean active, OrderByComparator orderByComparator)
          Finds the regions before and after the current region in the ordered set where countryId = ? and active = ?.
static Region RegionUtil.findByCountryId_First(long countryId, OrderByComparator orderByComparator)
          Finds the first region in the ordered set where countryId = ?.
 Region RegionPersistence.findByCountryId_First(long countryId, OrderByComparator orderByComparator)
          Finds the first region in the ordered set where countryId = ?.
 Region RegionPersistenceImpl.findByCountryId_First(long countryId, OrderByComparator orderByComparator)
          Finds the first region in the ordered set where countryId = ?.
static Region RegionUtil.findByCountryId_Last(long countryId, OrderByComparator orderByComparator)
          Finds the last region in the ordered set where countryId = ?.
 Region RegionPersistence.findByCountryId_Last(long countryId, OrderByComparator orderByComparator)
          Finds the last region in the ordered set where countryId = ?.
 Region RegionPersistenceImpl.findByCountryId_Last(long countryId, OrderByComparator orderByComparator)
          Finds the last region in the ordered set where countryId = ?.
static Region[] RegionUtil.findByCountryId_PrevAndNext(long regionId, long countryId, OrderByComparator orderByComparator)
          Finds the regions before and after the current region in the ordered set where countryId = ?.
 Region[] RegionPersistence.findByCountryId_PrevAndNext(long regionId, long countryId, OrderByComparator orderByComparator)
          Finds the regions before and after the current region in the ordered set where countryId = ?.
 Region[] RegionPersistenceImpl.findByCountryId_PrevAndNext(long regionId, long countryId, OrderByComparator orderByComparator)
          Finds the regions before and after the current region in the ordered set where countryId = ?.
static Region RegionUtil.findByPrimaryKey(long regionId)
          Finds the region with the primary key or throws a NoSuchRegionException if it could not be found.
 Region RegionPersistence.findByPrimaryKey(long regionId)
          Finds the region with the primary key or throws a NoSuchRegionException if it could not be found.
 Region RegionPersistenceImpl.findByPrimaryKey(long regionId)
          Finds the region with the primary key or throws a NoSuchRegionException if it could not be found.
 Region RegionPersistenceImpl.findByPrimaryKey(Serializable primaryKey)
          Finds the region with the primary key or throws a NoSuchModelException if it could not be found.
protected  Region RegionPersistenceImpl.getByActive_PrevAndNext(Session session, Region region, boolean active, OrderByComparator orderByComparator, boolean previous)
           
protected  Region RegionPersistenceImpl.getByC_A_PrevAndNext(Session session, Region region, long countryId, boolean active, OrderByComparator orderByComparator, boolean previous)
           
protected  Region RegionPersistenceImpl.getByCountryId_PrevAndNext(Session session, Region region, long countryId, OrderByComparator orderByComparator, boolean previous)
           
static Region RegionUtil.remove(long regionId)
          Removes the region with the primary key from the database.
 Region RegionPersistence.remove(long regionId)
          Removes the region with the primary key from the database.
 Region RegionPersistenceImpl.remove(long regionId)
          Removes the region with the primary key from the database.
static Region RegionUtil.remove(Region region)
           
 Region RegionPersistenceImpl.remove(Serializable primaryKey)
          Removes the region with the primary key from the database.
protected  Region RegionPersistenceImpl.removeImpl(Region region)
           
protected  Region RegionPersistenceImpl.toUnwrappedModel(Region region)
           
static Region RegionUtil.update(Region region, boolean merge)
           
static Region RegionUtil.update(Region region, boolean merge, ServiceContext serviceContext)
           
static Region RegionUtil.updateImpl(Region region, boolean merge)
           
 Region RegionPersistence.updateImpl(Region region, boolean merge)
           
 Region RegionPersistenceImpl.updateImpl(Region region, boolean merge)
           
 

Methods in com.liferay.portal.service.persistence that return types with arguments of type Region
static List<Region> RegionUtil.findAll()
          Finds all the regions.
 List<Region> RegionPersistence.findAll()
          Finds all the regions.
 List<Region> RegionPersistenceImpl.findAll()
          Finds all the regions.
static List<Region> RegionUtil.findAll(int start, int end)
          Finds a range of all the regions.
 List<Region> RegionPersistence.findAll(int start, int end)
          Finds a range of all the regions.
 List<Region> RegionPersistenceImpl.findAll(int start, int end)
          Finds a range of all the regions.
static List<Region> RegionUtil.findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions.
 List<Region> RegionPersistence.findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions.
 List<Region> RegionPersistenceImpl.findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions.
static List<Region> RegionUtil.findByActive(boolean active)
          Finds all the regions where active = ?.
 List<Region> RegionPersistence.findByActive(boolean active)
          Finds all the regions where active = ?.
 List<Region> RegionPersistenceImpl.findByActive(boolean active)
          Finds all the regions where active = ?.
static List<Region> RegionUtil.findByActive(boolean active, int start, int end)
          Finds a range of all the regions where active = ?.
 List<Region> RegionPersistence.findByActive(boolean active, int start, int end)
          Finds a range of all the regions where active = ?.
 List<Region> RegionPersistenceImpl.findByActive(boolean active, int start, int end)
          Finds a range of all the regions where active = ?.
static List<Region> RegionUtil.findByActive(boolean active, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions where active = ?.
 List<Region> RegionPersistence.findByActive(boolean active, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions where active = ?.
 List<Region> RegionPersistenceImpl.findByActive(boolean active, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions where active = ?.
static List<Region> RegionUtil.findByC_A(long countryId, boolean active)
          Finds all the regions where countryId = ? and active = ?.
 List<Region> RegionPersistence.findByC_A(long countryId, boolean active)
          Finds all the regions where countryId = ? and active = ?.
 List<Region> RegionPersistenceImpl.findByC_A(long countryId, boolean active)
          Finds all the regions where countryId = ? and active = ?.
static List<Region> RegionUtil.findByC_A(long countryId, boolean active, int start, int end)
          Finds a range of all the regions where countryId = ? and active = ?.
 List<Region> RegionPersistence.findByC_A(long countryId, boolean active, int start, int end)
          Finds a range of all the regions where countryId = ? and active = ?.
 List<Region> RegionPersistenceImpl.findByC_A(long countryId, boolean active, int start, int end)
          Finds a range of all the regions where countryId = ? and active = ?.
static List<Region> RegionUtil.findByC_A(long countryId, boolean active, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions where countryId = ? and active = ?.
 List<Region> RegionPersistence.findByC_A(long countryId, boolean active, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions where countryId = ? and active = ?.
 List<Region> RegionPersistenceImpl.findByC_A(long countryId, boolean active, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions where countryId = ? and active = ?.
static List<Region> RegionUtil.findByCountryId(long countryId)
          Finds all the regions where countryId = ?.
 List<Region> RegionPersistence.findByCountryId(long countryId)
          Finds all the regions where countryId = ?.
 List<Region> RegionPersistenceImpl.findByCountryId(long countryId)
          Finds all the regions where countryId = ?.
static List<Region> RegionUtil.findByCountryId(long countryId, int start, int end)
          Finds a range of all the regions where countryId = ?.
 List<Region> RegionPersistence.findByCountryId(long countryId, int start, int end)
          Finds a range of all the regions where countryId = ?.
 List<Region> RegionPersistenceImpl.findByCountryId(long countryId, int start, int end)
          Finds a range of all the regions where countryId = ?.
static List<Region> RegionUtil.findByCountryId(long countryId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions where countryId = ?.
 List<Region> RegionPersistence.findByCountryId(long countryId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions where countryId = ?.
 List<Region> RegionPersistenceImpl.findByCountryId(long countryId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the regions where countryId = ?.
static List<Region> RegionUtil.findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<Region> RegionUtil.findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<Region> RegionUtil.findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
 

Methods in com.liferay.portal.service.persistence with parameters of type Region
static void RegionUtil.cacheResult(Region region)
          Caches the region in the entity cache if it is enabled.
 void RegionPersistence.cacheResult(Region region)
          Caches the region in the entity cache if it is enabled.
 void RegionPersistenceImpl.cacheResult(Region region)
          Caches the region in the entity cache if it is enabled.
static void RegionUtil.clearCache(Region region)
           
 void RegionPersistenceImpl.clearCache(Region region)
          Clears the cache for the region.
protected  Region RegionPersistenceImpl.getByActive_PrevAndNext(Session session, Region region, boolean active, OrderByComparator orderByComparator, boolean previous)
           
protected  Region RegionPersistenceImpl.getByC_A_PrevAndNext(Session session, Region region, long countryId, boolean active, OrderByComparator orderByComparator, boolean previous)
           
protected  Region RegionPersistenceImpl.getByCountryId_PrevAndNext(Session session, Region region, long countryId, OrderByComparator orderByComparator, boolean previous)
           
static Region RegionUtil.remove(Region region)
           
protected  Region RegionPersistenceImpl.removeImpl(Region region)
           
protected  Region RegionPersistenceImpl.toUnwrappedModel(Region region)
           
static Region RegionUtil.update(Region region, boolean merge)
           
static Region RegionUtil.update(Region region, boolean merge, ServiceContext serviceContext)
           
static Region RegionUtil.updateImpl(Region region, boolean merge)
           
 Region RegionPersistence.updateImpl(Region region, boolean merge)
           
 Region RegionPersistenceImpl.updateImpl(Region region, boolean merge)
           
 

Method parameters in com.liferay.portal.service.persistence with type arguments of type Region
static void RegionUtil.cacheResult(List<Region> regions)
          Caches the regions in the entity cache if it is enabled.
 void RegionPersistence.cacheResult(List<Region> regions)
          Caches the regions in the entity cache if it is enabled.
 void RegionPersistenceImpl.cacheResult(List<Region> regions)
          Caches the regions in the entity cache if it is enabled.
 


Liferay 6.0.5