Interface RegionPersistence

All Superinterfaces:
BasePersistence<Region>, CTPersistence<Region>

@ProviderType public interface RegionPersistence extends BasePersistence<Region>, CTPersistence<Region>
The persistence interface for the region service.

Caching information and settings can be found in portal.properties

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Method Details

    • findByUuid

      List<Region> findByUuid(String uuid)
      Returns all the regions where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching regions
    • findByUuid

      List<Region> findByUuid(String uuid, int start, int end)
      Returns a range of all the regions where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      Returns:
      the range of matching regions
    • findByUuid

      List<Region> findByUuid(String uuid, int start, int end, OrderByComparator<Region> orderByComparator)
      Returns an ordered range of all the regions where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching regions
    • findByUuid

      List<Region> findByUuid(String uuid, int start, int end, OrderByComparator<Region> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the regions where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching regions
    • findByUuid_First

      Region findByUuid_First(String uuid, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the first region in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByUuid_First

      Region fetchByUuid_First(String uuid, OrderByComparator<Region> orderByComparator)
      Returns the first region in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching region, or null if a matching region could not be found
    • findByUuid_Last

      Region findByUuid_Last(String uuid, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the last region in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByUuid_Last

      Region fetchByUuid_Last(String uuid, OrderByComparator<Region> orderByComparator)
      Returns the last region in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching region, or null if a matching region could not be found
    • findByUuid_PrevAndNext

      Region[] findByUuid_PrevAndNext(long regionId, String uuid, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the regions before and after the current region in the ordered set where uuid = ?.
      Parameters:
      regionId - the primary key of the current region
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next region
      Throws:
      NoSuchRegionException - if a region with the primary key could not be found
    • removeByUuid

      void removeByUuid(String uuid)
      Removes all the regions where uuid = ? from the database.
      Parameters:
      uuid - the uuid
    • countByUuid

      int countByUuid(String uuid)
      Returns the number of regions where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching regions
    • findByUuid_C

      List<Region> findByUuid_C(String uuid, long companyId)
      Returns all the regions where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching regions
    • findByUuid_C

      List<Region> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the regions where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      Returns:
      the range of matching regions
    • findByUuid_C

      List<Region> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Region> orderByComparator)
      Returns an ordered range of all the regions where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching regions
    • findByUuid_C

      List<Region> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Region> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the regions where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching regions
    • findByUuid_C_First

      Region findByUuid_C_First(String uuid, long companyId, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the first region in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByUuid_C_First

      Region fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<Region> orderByComparator)
      Returns the first region in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching region, or null if a matching region could not be found
    • findByUuid_C_Last

      Region findByUuid_C_Last(String uuid, long companyId, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the last region in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByUuid_C_Last

      Region fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<Region> orderByComparator)
      Returns the last region in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching region, or null if a matching region could not be found
    • findByUuid_C_PrevAndNext

      Region[] findByUuid_C_PrevAndNext(long regionId, String uuid, long companyId, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the regions before and after the current region in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      regionId - the primary key of the current region
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next region
      Throws:
      NoSuchRegionException - if a region with the primary key could not be found
    • removeByUuid_C

      void removeByUuid_C(String uuid, long companyId)
      Removes all the regions where uuid = ? and companyId = ? from the database.
      Parameters:
      uuid - the uuid
      companyId - the company ID
    • countByUuid_C

      int countByUuid_C(String uuid, long companyId)
      Returns the number of regions where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching regions
    • findByCountryId

      List<Region> findByCountryId(long countryId)
      Returns all the regions where countryId = ?.
      Parameters:
      countryId - the country ID
      Returns:
      the matching regions
    • findByCountryId

      List<Region> findByCountryId(long countryId, int start, int end)
      Returns a range of all the regions where countryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      countryId - the country ID
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      Returns:
      the range of matching regions
    • findByCountryId

      List<Region> findByCountryId(long countryId, int start, int end, OrderByComparator<Region> orderByComparator)
      Returns an ordered range of all the regions where countryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      countryId - the country ID
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching regions
    • findByCountryId

      List<Region> findByCountryId(long countryId, int start, int end, OrderByComparator<Region> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the regions where countryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      countryId - the country ID
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching regions
    • findByCountryId_First

      Region findByCountryId_First(long countryId, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the first region in the ordered set where countryId = ?.
      Parameters:
      countryId - the country ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByCountryId_First

      Region fetchByCountryId_First(long countryId, OrderByComparator<Region> orderByComparator)
      Returns the first region in the ordered set where countryId = ?.
      Parameters:
      countryId - the country ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching region, or null if a matching region could not be found
    • findByCountryId_Last

      Region findByCountryId_Last(long countryId, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the last region in the ordered set where countryId = ?.
      Parameters:
      countryId - the country ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByCountryId_Last

      Region fetchByCountryId_Last(long countryId, OrderByComparator<Region> orderByComparator)
      Returns the last region in the ordered set where countryId = ?.
      Parameters:
      countryId - the country ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching region, or null if a matching region could not be found
    • findByCountryId_PrevAndNext

      Region[] findByCountryId_PrevAndNext(long regionId, long countryId, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the regions before and after the current region in the ordered set where countryId = ?.
      Parameters:
      regionId - the primary key of the current region
      countryId - the country ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next region
      Throws:
      NoSuchRegionException - if a region with the primary key could not be found
    • removeByCountryId

      void removeByCountryId(long countryId)
      Removes all the regions where countryId = ? from the database.
      Parameters:
      countryId - the country ID
    • countByCountryId

      int countByCountryId(long countryId)
      Returns the number of regions where countryId = ?.
      Parameters:
      countryId - the country ID
      Returns:
      the number of matching regions
    • findByActive

      List<Region> findByActive(boolean active)
      Returns all the regions where active = ?.
      Parameters:
      active - the active
      Returns:
      the matching regions
    • findByActive

      List<Region> findByActive(boolean active, int start, int end)
      Returns a range of all the regions where active = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      active - the active
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      Returns:
      the range of matching regions
    • findByActive

      List<Region> findByActive(boolean active, int start, int end, OrderByComparator<Region> orderByComparator)
      Returns an ordered range of all the regions where active = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      active - the active
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching regions
    • findByActive

      List<Region> findByActive(boolean active, int start, int end, OrderByComparator<Region> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the regions where active = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      active - the active
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching regions
    • findByActive_First

      Region findByActive_First(boolean active, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the first region in the ordered set where active = ?.
      Parameters:
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByActive_First

      Region fetchByActive_First(boolean active, OrderByComparator<Region> orderByComparator)
      Returns the first region in the ordered set where active = ?.
      Parameters:
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching region, or null if a matching region could not be found
    • findByActive_Last

      Region findByActive_Last(boolean active, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the last region in the ordered set where active = ?.
      Parameters:
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByActive_Last

      Region fetchByActive_Last(boolean active, OrderByComparator<Region> orderByComparator)
      Returns the last region in the ordered set where active = ?.
      Parameters:
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching region, or null if a matching region could not be found
    • findByActive_PrevAndNext

      Region[] findByActive_PrevAndNext(long regionId, boolean active, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the regions before and after the current region in the ordered set where active = ?.
      Parameters:
      regionId - the primary key of the current region
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next region
      Throws:
      NoSuchRegionException - if a region with the primary key could not be found
    • removeByActive

      void removeByActive(boolean active)
      Removes all the regions where active = ? from the database.
      Parameters:
      active - the active
    • countByActive

      int countByActive(boolean active)
      Returns the number of regions where active = ?.
      Parameters:
      active - the active
      Returns:
      the number of matching regions
    • findByC_A

      List<Region> findByC_A(long countryId, boolean active)
      Returns all the regions where countryId = ? and active = ?.
      Parameters:
      countryId - the country ID
      active - the active
      Returns:
      the matching regions
    • findByC_A

      List<Region> findByC_A(long countryId, boolean active, int start, int end)
      Returns a range of all the regions where countryId = ? and active = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      countryId - the country ID
      active - the active
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      Returns:
      the range of matching regions
    • findByC_A

      List<Region> findByC_A(long countryId, boolean active, int start, int end, OrderByComparator<Region> orderByComparator)
      Returns an ordered range of all the regions where countryId = ? and active = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      countryId - the country ID
      active - the active
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching regions
    • findByC_A

      List<Region> findByC_A(long countryId, boolean active, int start, int end, OrderByComparator<Region> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the regions where countryId = ? and active = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      countryId - the country ID
      active - the active
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching regions
    • findByC_A_First

      Region findByC_A_First(long countryId, boolean active, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the first region in the ordered set where countryId = ? and active = ?.
      Parameters:
      countryId - the country ID
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByC_A_First

      Region fetchByC_A_First(long countryId, boolean active, OrderByComparator<Region> orderByComparator)
      Returns the first region in the ordered set where countryId = ? and active = ?.
      Parameters:
      countryId - the country ID
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching region, or null if a matching region could not be found
    • findByC_A_Last

      Region findByC_A_Last(long countryId, boolean active, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the last region in the ordered set where countryId = ? and active = ?.
      Parameters:
      countryId - the country ID
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByC_A_Last

      Region fetchByC_A_Last(long countryId, boolean active, OrderByComparator<Region> orderByComparator)
      Returns the last region in the ordered set where countryId = ? and active = ?.
      Parameters:
      countryId - the country ID
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching region, or null if a matching region could not be found
    • findByC_A_PrevAndNext

      Region[] findByC_A_PrevAndNext(long regionId, long countryId, boolean active, OrderByComparator<Region> orderByComparator) throws NoSuchRegionException
      Returns the regions before and after the current region in the ordered set where countryId = ? and active = ?.
      Parameters:
      regionId - the primary key of the current region
      countryId - the country ID
      active - the active
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next region
      Throws:
      NoSuchRegionException - if a region with the primary key could not be found
    • removeByC_A

      void removeByC_A(long countryId, boolean active)
      Removes all the regions where countryId = ? and active = ? from the database.
      Parameters:
      countryId - the country ID
      active - the active
    • countByC_A

      int countByC_A(long countryId, boolean active)
      Returns the number of regions where countryId = ? and active = ?.
      Parameters:
      countryId - the country ID
      active - the active
      Returns:
      the number of matching regions
    • findByC_R

      Region findByC_R(long countryId, String regionCode) throws NoSuchRegionException
      Returns the region where countryId = ? and regionCode = ? or throws a NoSuchRegionException if it could not be found.
      Parameters:
      countryId - the country ID
      regionCode - the region code
      Returns:
      the matching region
      Throws:
      NoSuchRegionException - if a matching region could not be found
    • fetchByC_R

      Region fetchByC_R(long countryId, String regionCode)
      Returns the region where countryId = ? and regionCode = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      countryId - the country ID
      regionCode - the region code
      Returns:
      the matching region, or null if a matching region could not be found
    • fetchByC_R

      Region fetchByC_R(long countryId, String regionCode, boolean useFinderCache)
      Returns the region where countryId = ? and regionCode = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      countryId - the country ID
      regionCode - the region code
      useFinderCache - whether to use the finder cache
      Returns:
      the matching region, or null if a matching region could not be found
    • removeByC_R

      Region removeByC_R(long countryId, String regionCode) throws NoSuchRegionException
      Removes the region where countryId = ? and regionCode = ? from the database.
      Parameters:
      countryId - the country ID
      regionCode - the region code
      Returns:
      the region that was removed
      Throws:
      NoSuchRegionException
    • countByC_R

      int countByC_R(long countryId, String regionCode)
      Returns the number of regions where countryId = ? and regionCode = ?.
      Parameters:
      countryId - the country ID
      regionCode - the region code
      Returns:
      the number of matching regions
    • cacheResult

      void cacheResult(Region region)
      Caches the region in the entity cache if it is enabled.
      Parameters:
      region - the region
    • cacheResult

      void cacheResult(List<Region> regions)
      Caches the regions in the entity cache if it is enabled.
      Parameters:
      regions - the regions
    • create

      Region create(long regionId)
      Creates a new region with the primary key. Does not add the region to the database.
      Parameters:
      regionId - the primary key for the new region
      Returns:
      the new region
    • remove

      Region remove(long regionId) throws NoSuchRegionException
      Removes the region with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      regionId - the primary key of the region
      Returns:
      the region that was removed
      Throws:
      NoSuchRegionException - if a region with the primary key could not be found
    • updateImpl

      Region updateImpl(Region region)
    • findByPrimaryKey

      Region findByPrimaryKey(long regionId) throws NoSuchRegionException
      Returns the region with the primary key or throws a NoSuchRegionException if it could not be found.
      Parameters:
      regionId - the primary key of the region
      Returns:
      the region
      Throws:
      NoSuchRegionException - if a region with the primary key could not be found
    • fetchByPrimaryKey

      Region fetchByPrimaryKey(long regionId)
      Returns the region with the primary key or returns null if it could not be found.
      Parameters:
      regionId - the primary key of the region
      Returns:
      the region, or null if a region with the primary key could not be found
    • findAll

      List<Region> findAll()
      Returns all the regions.
      Returns:
      the regions
    • findAll

      List<Region> findAll(int start, int end)
      Returns a range of all the regions.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      Returns:
      the range of regions
    • findAll

      List<Region> findAll(int start, int end, OrderByComparator<Region> orderByComparator)
      Returns an ordered range of all the regions.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of regions
    • findAll

      List<Region> findAll(int start, int end, OrderByComparator<Region> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the regions.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from RegionModelImpl.

      Parameters:
      start - the lower bound of the range of regions
      end - the upper bound of the range of regions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of regions
    • removeAll

      void removeAll()
      Removes all the regions from the database.
    • countAll

      int countAll()
      Returns the number of regions.
      Returns:
      the number of regions