Class LaunchSetUtil

java.lang.Object
com.liferay.launch.service.persistence.LaunchSetUtil

public class LaunchSetUtil extends Object
The persistence utility for the launch set service. This utility wraps com.liferay.launch.service.persistence.impl.LaunchSetPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    Caches the launch set in the entity cache if it is enabled.
    static void
    cacheResult(List<LaunchSet> launchSets)
    Caches the launch sets in the entity cache if it is enabled.
    static void
     
    static void
    clearCache(LaunchSet launchSet)
     
    static int
    Returns the number of launch sets.
    static int
    countByC_S(long companyId, int status)
    Returns the number of launch sets where companyId = ? and status = ?.
    static int
    countByC_S(long companyId, int[] statuses)
    Returns the number of launch sets where companyId = ? and status = any ?.
    static int
    countByC_U(long companyId, long userId)
    Returns the number of launch sets where companyId = ? and userId = ?.
    static int
    countByCompanyId(long companyId)
    Returns the number of launch sets where companyId = ?.
    static int
    countByERC_C(String externalReferenceCode, long companyId)
    Returns the number of launch sets where externalReferenceCode = ? and companyId = ?.
    static int
    Returns the number of launch sets where uuid = ?.
    static int
    countByUuid_C(String uuid, long companyId)
    Returns the number of launch sets where uuid = ? and companyId = ?.
    static long
    countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
     
    static LaunchSet
    create(long launchSetId)
    Creates a new launch set with the primary key.
    static LaunchSet
    fetchByC_S_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the first launch set in the ordered set where companyId = ? and status = ?.
    static LaunchSet
    fetchByC_S_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the last launch set in the ordered set where companyId = ? and status = ?.
    static LaunchSet
    fetchByC_U_First(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the first launch set in the ordered set where companyId = ? and userId = ?.
    static LaunchSet
    fetchByC_U_Last(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the last launch set in the ordered set where companyId = ? and userId = ?.
    static LaunchSet
    fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the first launch set in the ordered set where companyId = ?.
    static LaunchSet
    fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the last launch set in the ordered set where companyId = ?.
    static LaunchSet
    fetchByERC_C(String externalReferenceCode, long companyId)
    Returns the launch set where externalReferenceCode = ? and companyId = ? or returns null if it could not be found.
    static LaunchSet
    fetchByERC_C(String externalReferenceCode, long companyId, boolean useFinderCache)
    Returns the launch set where externalReferenceCode = ? and companyId = ? or returns null if it could not be found, optionally using the finder cache.
    static LaunchSet
    fetchByPrimaryKey(long launchSetId)
    Returns the launch set with the primary key or returns null if it could not be found.
     
    static LaunchSet
    fetchByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the first launch set in the ordered set where uuid = ? and companyId = ?.
    static LaunchSet
    fetchByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the last launch set in the ordered set where uuid = ? and companyId = ?.
    static LaunchSet
    fetchByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the first launch set in the ordered set where uuid = ?.
    static LaunchSet
    fetchByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the last launch set in the ordered set where uuid = ?.
    static List<LaunchSet>
    Returns all the launch sets.
    static List<LaunchSet>
    findAll(int start, int end)
    Returns a range of all the launch sets.
    static List<LaunchSet>
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns an ordered range of all the launch sets.
    static List<LaunchSet>
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the launch sets.
    static List<LaunchSet>
    findByC_S(long companyId, int status)
    Returns all the launch sets where companyId = ? and status = ?.
    static List<LaunchSet>
    findByC_S(long companyId, int[] statuses)
    Returns all the launch sets where companyId = ? and status = any ?.
    static List<LaunchSet>
    findByC_S(long companyId, int[] statuses, int start, int end)
    Returns a range of all the launch sets where companyId = ? and status = any ?.
    static List<LaunchSet>
    findByC_S(long companyId, int[] statuses, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns an ordered range of all the launch sets where companyId = ? and status = any ?.
    static List<LaunchSet>
    findByC_S(long companyId, int[] statuses, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the launch sets where companyId = ? and status = ?, optionally using the finder cache.
    static List<LaunchSet>
    findByC_S(long companyId, int status, int start, int end)
    Returns a range of all the launch sets where companyId = ? and status = ?.
    static List<LaunchSet>
    findByC_S(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns an ordered range of all the launch sets where companyId = ? and status = ?.
    static List<LaunchSet>
    findByC_S(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the launch sets where companyId = ? and status = ?.
    static LaunchSet
    findByC_S_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the first launch set in the ordered set where companyId = ? and status = ?.
    static LaunchSet
    findByC_S_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the last launch set in the ordered set where companyId = ? and status = ?.
    static LaunchSet[]
    findByC_S_PrevAndNext(long launchSetId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the launch sets before and after the current launch set in the ordered set where companyId = ? and status = ?.
    static List<LaunchSet>
    findByC_U(long companyId, long userId)
    Returns all the launch sets where companyId = ? and userId = ?.
    static List<LaunchSet>
    findByC_U(long companyId, long userId, int start, int end)
    Returns a range of all the launch sets where companyId = ? and userId = ?.
    static List<LaunchSet>
    findByC_U(long companyId, long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns an ordered range of all the launch sets where companyId = ? and userId = ?.
    static List<LaunchSet>
    findByC_U(long companyId, long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the launch sets where companyId = ? and userId = ?.
    static LaunchSet
    findByC_U_First(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the first launch set in the ordered set where companyId = ? and userId = ?.
    static LaunchSet
    findByC_U_Last(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the last launch set in the ordered set where companyId = ? and userId = ?.
    static LaunchSet[]
    findByC_U_PrevAndNext(long launchSetId, long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the launch sets before and after the current launch set in the ordered set where companyId = ? and userId = ?.
    static List<LaunchSet>
    findByCompanyId(long companyId)
    Returns all the launch sets where companyId = ?.
    static List<LaunchSet>
    findByCompanyId(long companyId, int start, int end)
    Returns a range of all the launch sets where companyId = ?.
    static List<LaunchSet>
    findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns an ordered range of all the launch sets where companyId = ?.
    static List<LaunchSet>
    findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the launch sets where companyId = ?.
    static LaunchSet
    findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the first launch set in the ordered set where companyId = ?.
    static LaunchSet
    findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the last launch set in the ordered set where companyId = ?.
    static LaunchSet[]
    findByCompanyId_PrevAndNext(long launchSetId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the launch sets before and after the current launch set in the ordered set where companyId = ?.
    static LaunchSet
    findByERC_C(String externalReferenceCode, long companyId)
    Returns the launch set where externalReferenceCode = ? and companyId = ? or throws a NoSuchLaunchSetException if it could not be found.
    static LaunchSet
    findByPrimaryKey(long launchSetId)
    Returns the launch set with the primary key or throws a NoSuchLaunchSetException if it could not be found.
    static List<LaunchSet>
    Returns all the launch sets where uuid = ?.
    static List<LaunchSet>
    findByUuid(String uuid, int start, int end)
    Returns a range of all the launch sets where uuid = ?.
    static List<LaunchSet>
    findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns an ordered range of all the launch sets where uuid = ?.
    static List<LaunchSet>
    findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the launch sets where uuid = ?.
    static List<LaunchSet>
    findByUuid_C(String uuid, long companyId)
    Returns all the launch sets where uuid = ? and companyId = ?.
    static List<LaunchSet>
    findByUuid_C(String uuid, long companyId, int start, int end)
    Returns a range of all the launch sets where uuid = ? and companyId = ?.
    static List<LaunchSet>
    findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns an ordered range of all the launch sets where uuid = ? and companyId = ?.
    static List<LaunchSet>
    findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the launch sets where uuid = ? and companyId = ?.
    static LaunchSet
    findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the first launch set in the ordered set where uuid = ? and companyId = ?.
    static LaunchSet
    findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the last launch set in the ordered set where uuid = ? and companyId = ?.
    static LaunchSet[]
    findByUuid_C_PrevAndNext(long launchSetId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the launch sets before and after the current launch set in the ordered set where uuid = ? and companyId = ?.
    static LaunchSet
    findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the first launch set in the ordered set where uuid = ?.
    static LaunchSet
    findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the last launch set in the ordered set where uuid = ?.
    static LaunchSet[]
    findByUuid_PrevAndNext(long launchSetId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
    Returns the launch sets before and after the current launch set in the ordered set where uuid = ?.
    static List<LaunchSet>
    findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
     
    static List<LaunchSet>
    findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
     
    static List<LaunchSet>
    findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
     
     
    static LaunchSet
    remove(long launchSetId)
    Removes the launch set with the primary key from the database.
    static void
    Removes all the launch sets from the database.
    static void
    removeByC_S(long companyId, int status)
    Removes all the launch sets where companyId = ? and status = ? from the database.
    static void
    removeByC_U(long companyId, long userId)
    Removes all the launch sets where companyId = ? and userId = ? from the database.
    static void
    removeByCompanyId(long companyId)
    Removes all the launch sets where companyId = ? from the database.
    static LaunchSet
    removeByERC_C(String externalReferenceCode, long companyId)
    Removes the launch set where externalReferenceCode = ? and companyId = ? from the database.
    static void
    Removes all the launch sets where uuid = ? from the database.
    static void
    removeByUuid_C(String uuid, long companyId)
    Removes all the launch sets where uuid = ? and companyId = ? from the database.
    static void
     
    static LaunchSet
    update(LaunchSet launchSet)
     
    static LaunchSet
    update(LaunchSet launchSet, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    static LaunchSet
    updateImpl(LaunchSet launchSet)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • LaunchSetUtil

      public LaunchSetUtil()
  • Method Details

    • clearCache

      public static void clearCache()
      See Also:
      • BasePersistence.clearCache()
    • clearCache

      public static void clearCache(LaunchSet launchSet)
      See Also:
      • BasePersistence.clearCache(com.liferay.portal.kernel.model.BaseModel)
    • countWithDynamicQuery

      public static long countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      See Also:
      • BasePersistence.countWithDynamicQuery(DynamicQuery)
    • fetchByPrimaryKeys

      public static Map<Serializable,LaunchSet> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
      See Also:
      • BasePersistence.fetchByPrimaryKeys(Set)
    • findWithDynamicQuery

      public static List<LaunchSet> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery)
    • findWithDynamicQuery

      public static List<LaunchSet> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
    • findWithDynamicQuery

      public static List<LaunchSet> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
    • update

      public static LaunchSet update(LaunchSet launchSet)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel)
    • update

      public static LaunchSet update(LaunchSet launchSet, com.liferay.portal.kernel.service.ServiceContext serviceContext)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
    • findByUuid

      public static List<LaunchSet> findByUuid(String uuid)
      Returns all the launch sets where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching launch sets
    • findByUuid

      public static List<LaunchSet> findByUuid(String uuid, int start, int end)
      Returns a range of all the launch sets 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 LaunchSetModelImpl.

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

      public static List<LaunchSet> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns an ordered range of all the launch sets 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 LaunchSetModelImpl.

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

      public static List<LaunchSet> findByUuid(String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the launch sets 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 LaunchSetModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (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 launch sets
    • findByUuid_First

      public static LaunchSet findByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the first launch set in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching launch set
    • fetchByUuid_First

      public static LaunchSet fetchByUuid_First(String uuid, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns the first launch set in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching launch set, or null if a matching launch set could not be found
    • findByUuid_Last

      public static LaunchSet findByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the last launch set in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching launch set
    • fetchByUuid_Last

      public static LaunchSet fetchByUuid_Last(String uuid, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns the last launch set in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching launch set, or null if a matching launch set could not be found
    • findByUuid_PrevAndNext

      public static LaunchSet[] findByUuid_PrevAndNext(long launchSetId, String uuid, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the launch sets before and after the current launch set in the ordered set where uuid = ?.
      Parameters:
      launchSetId - the primary key of the current launch set
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next launch set
    • removeByUuid

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

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

      public static List<LaunchSet> findByUuid_C(String uuid, long companyId)
      Returns all the launch sets where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching launch sets
    • findByUuid_C

      public static List<LaunchSet> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the launch sets 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 LaunchSetModelImpl.

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

      public static List<LaunchSet> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns an ordered range of all the launch sets 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 LaunchSetModelImpl.

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

      public static List<LaunchSet> findByUuid_C(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the launch sets 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 LaunchSetModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (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 launch sets
    • findByUuid_C_First

      public static LaunchSet findByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the first launch set 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 launch set
    • fetchByUuid_C_First

      public static LaunchSet fetchByUuid_C_First(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns the first launch set 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 launch set, or null if a matching launch set could not be found
    • findByUuid_C_Last

      public static LaunchSet findByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the last launch set 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 launch set
    • fetchByUuid_C_Last

      public static LaunchSet fetchByUuid_C_Last(String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns the last launch set 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 launch set, or null if a matching launch set could not be found
    • findByUuid_C_PrevAndNext

      public static LaunchSet[] findByUuid_C_PrevAndNext(long launchSetId, String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the launch sets before and after the current launch set in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      launchSetId - the primary key of the current launch set
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next launch set
    • removeByUuid_C

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

      public static int countByUuid_C(String uuid, long companyId)
      Returns the number of launch sets where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching launch sets
    • findByCompanyId

      public static List<LaunchSet> findByCompanyId(long companyId)
      Returns all the launch sets where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching launch sets
    • findByCompanyId

      public static List<LaunchSet> findByCompanyId(long companyId, int start, int end)
      Returns a range of all the launch sets where 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 LaunchSetModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (not inclusive)
      Returns:
      the range of matching launch sets
    • findByCompanyId

      public static List<LaunchSet> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns an ordered range of all the launch sets where 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 LaunchSetModelImpl.

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

      public static List<LaunchSet> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the launch sets where 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 LaunchSetModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (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 launch sets
    • findByCompanyId_First

      public static LaunchSet findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the first launch set in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching launch set
    • fetchByCompanyId_First

      public static LaunchSet fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns the first launch set in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching launch set, or null if a matching launch set could not be found
    • findByCompanyId_Last

      public static LaunchSet findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the last launch set in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching launch set
    • fetchByCompanyId_Last

      public static LaunchSet fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns the last launch set in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching launch set, or null if a matching launch set could not be found
    • findByCompanyId_PrevAndNext

      public static LaunchSet[] findByCompanyId_PrevAndNext(long launchSetId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the launch sets before and after the current launch set in the ordered set where companyId = ?.
      Parameters:
      launchSetId - the primary key of the current launch set
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next launch set
    • removeByCompanyId

      public static void removeByCompanyId(long companyId)
      Removes all the launch sets where companyId = ? from the database.
      Parameters:
      companyId - the company ID
    • countByCompanyId

      public static int countByCompanyId(long companyId)
      Returns the number of launch sets where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching launch sets
    • findByC_U

      public static List<LaunchSet> findByC_U(long companyId, long userId)
      Returns all the launch sets where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      Returns:
      the matching launch sets
    • findByC_U

      public static List<LaunchSet> findByC_U(long companyId, long userId, int start, int end)
      Returns a range of all the launch sets where companyId = ? and userId = ?.

      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 LaunchSetModelImpl.

      Parameters:
      companyId - the company ID
      userId - the user ID
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (not inclusive)
      Returns:
      the range of matching launch sets
    • findByC_U

      public static List<LaunchSet> findByC_U(long companyId, long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns an ordered range of all the launch sets where companyId = ? and userId = ?.

      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 LaunchSetModelImpl.

      Parameters:
      companyId - the company ID
      userId - the user ID
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching launch sets
    • findByC_U

      public static List<LaunchSet> findByC_U(long companyId, long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the launch sets where companyId = ? and userId = ?.

      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 LaunchSetModelImpl.

      Parameters:
      companyId - the company ID
      userId - the user ID
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (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 launch sets
    • findByC_U_First

      public static LaunchSet findByC_U_First(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the first launch set in the ordered set where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching launch set
    • fetchByC_U_First

      public static LaunchSet fetchByC_U_First(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns the first launch set in the ordered set where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching launch set, or null if a matching launch set could not be found
    • findByC_U_Last

      public static LaunchSet findByC_U_Last(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the last launch set in the ordered set where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching launch set
    • fetchByC_U_Last

      public static LaunchSet fetchByC_U_Last(long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns the last launch set in the ordered set where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching launch set, or null if a matching launch set could not be found
    • findByC_U_PrevAndNext

      public static LaunchSet[] findByC_U_PrevAndNext(long launchSetId, long companyId, long userId, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the launch sets before and after the current launch set in the ordered set where companyId = ? and userId = ?.
      Parameters:
      launchSetId - the primary key of the current launch set
      companyId - the company ID
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next launch set
    • removeByC_U

      public static void removeByC_U(long companyId, long userId)
      Removes all the launch sets where companyId = ? and userId = ? from the database.
      Parameters:
      companyId - the company ID
      userId - the user ID
    • countByC_U

      public static int countByC_U(long companyId, long userId)
      Returns the number of launch sets where companyId = ? and userId = ?.
      Parameters:
      companyId - the company ID
      userId - the user ID
      Returns:
      the number of matching launch sets
    • findByC_S

      public static List<LaunchSet> findByC_S(long companyId, int status)
      Returns all the launch sets where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      Returns:
      the matching launch sets
    • findByC_S

      public static List<LaunchSet> findByC_S(long companyId, int status, int start, int end)
      Returns a range of all the launch sets where companyId = ? and status = ?.

      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 LaunchSetModelImpl.

      Parameters:
      companyId - the company ID
      status - the status
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (not inclusive)
      Returns:
      the range of matching launch sets
    • findByC_S

      public static List<LaunchSet> findByC_S(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns an ordered range of all the launch sets where companyId = ? and status = ?.

      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 LaunchSetModelImpl.

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

      public static List<LaunchSet> findByC_S(long companyId, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the launch sets where companyId = ? and status = ?.

      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 LaunchSetModelImpl.

      Parameters:
      companyId - the company ID
      status - the status
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (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 launch sets
    • findByC_S_First

      public static LaunchSet findByC_S_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the first launch set in the ordered set where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching launch set
    • fetchByC_S_First

      public static LaunchSet fetchByC_S_First(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns the first launch set in the ordered set where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching launch set, or null if a matching launch set could not be found
    • findByC_S_Last

      public static LaunchSet findByC_S_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the last launch set in the ordered set where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching launch set
    • fetchByC_S_Last

      public static LaunchSet fetchByC_S_Last(long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns the last launch set in the ordered set where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching launch set, or null if a matching launch set could not be found
    • findByC_S_PrevAndNext

      public static LaunchSet[] findByC_S_PrevAndNext(long launchSetId, long companyId, int status, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator) throws NoSuchLaunchSetException
      Returns the launch sets before and after the current launch set in the ordered set where companyId = ? and status = ?.
      Parameters:
      launchSetId - the primary key of the current launch set
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next launch set
    • findByC_S

      public static List<LaunchSet> findByC_S(long companyId, int[] statuses)
      Returns all the launch sets where companyId = ? and status = any ?.

      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 LaunchSetModelImpl.

      Parameters:
      companyId - the company ID
      statuses - the statuses
      Returns:
      the matching launch sets
    • findByC_S

      public static List<LaunchSet> findByC_S(long companyId, int[] statuses, int start, int end)
      Returns a range of all the launch sets where companyId = ? and status = any ?.

      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 LaunchSetModelImpl.

      Parameters:
      companyId - the company ID
      statuses - the statuses
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (not inclusive)
      Returns:
      the range of matching launch sets
    • findByC_S

      public static List<LaunchSet> findByC_S(long companyId, int[] statuses, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns an ordered range of all the launch sets where companyId = ? and status = any ?.

      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 LaunchSetModelImpl.

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

      public static List<LaunchSet> findByC_S(long companyId, int[] statuses, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the launch sets where companyId = ? and status = ?, optionally using the finder cache.

      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 LaunchSetModelImpl.

      Parameters:
      companyId - the company ID
      statuses - the statuses
      start - the lower bound of the range of launch sets
      end - the upper bound of the range of launch sets (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 launch sets
    • removeByC_S

      public static void removeByC_S(long companyId, int status)
      Removes all the launch sets where companyId = ? and status = ? from the database.
      Parameters:
      companyId - the company ID
      status - the status
    • countByC_S

      public static int countByC_S(long companyId, int status)
      Returns the number of launch sets where companyId = ? and status = ?.
      Parameters:
      companyId - the company ID
      status - the status
      Returns:
      the number of matching launch sets
    • countByC_S

      public static int countByC_S(long companyId, int[] statuses)
      Returns the number of launch sets where companyId = ? and status = any ?.
      Parameters:
      companyId - the company ID
      statuses - the statuses
      Returns:
      the number of matching launch sets
    • findByERC_C

      public static LaunchSet findByERC_C(String externalReferenceCode, long companyId) throws NoSuchLaunchSetException
      Returns the launch set where externalReferenceCode = ? and companyId = ? or throws a NoSuchLaunchSetException if it could not be found.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the matching launch set
    • fetchByERC_C

      public static LaunchSet fetchByERC_C(String externalReferenceCode, long companyId)
      Returns the launch set where externalReferenceCode = ? and companyId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the matching launch set, or null if a matching launch set could not be found
    • fetchByERC_C

      public static LaunchSet fetchByERC_C(String externalReferenceCode, long companyId, boolean useFinderCache)
      Returns the launch set where externalReferenceCode = ? and companyId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching launch set, or null if a matching launch set could not be found
    • removeByERC_C

      public static LaunchSet removeByERC_C(String externalReferenceCode, long companyId) throws NoSuchLaunchSetException
      Removes the launch set where externalReferenceCode = ? and companyId = ? from the database.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the launch set that was removed
      Throws:
      NoSuchLaunchSetException
    • countByERC_C

      public static int countByERC_C(String externalReferenceCode, long companyId)
      Returns the number of launch sets where externalReferenceCode = ? and companyId = ?.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the number of matching launch sets
    • cacheResult

      public static void cacheResult(LaunchSet launchSet)
      Caches the launch set in the entity cache if it is enabled.
      Parameters:
      launchSet - the launch set
    • cacheResult

      public static void cacheResult(List<LaunchSet> launchSets)
      Caches the launch sets in the entity cache if it is enabled.
      Parameters:
      launchSets - the launch sets
    • create

      public static LaunchSet create(long launchSetId)
      Creates a new launch set with the primary key. Does not add the launch set to the database.
      Parameters:
      launchSetId - the primary key for the new launch set
      Returns:
      the new launch set
    • remove

      public static LaunchSet remove(long launchSetId) throws NoSuchLaunchSetException
      Removes the launch set with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      launchSetId - the primary key of the launch set
      Returns:
      the launch set that was removed
    • updateImpl

      public static LaunchSet updateImpl(LaunchSet launchSet)
    • findByPrimaryKey

      public static LaunchSet findByPrimaryKey(long launchSetId) throws NoSuchLaunchSetException
      Returns the launch set with the primary key or throws a NoSuchLaunchSetException if it could not be found.
      Parameters:
      launchSetId - the primary key of the launch set
      Returns:
      the launch set
    • fetchByPrimaryKey

      public static LaunchSet fetchByPrimaryKey(long launchSetId)
      Returns the launch set with the primary key or returns null if it could not be found.
      Parameters:
      launchSetId - the primary key of the launch set
      Returns:
      the launch set, or null if a launch set with the primary key could not be found
    • findAll

      public static List<LaunchSet> findAll()
      Returns all the launch sets.
      Returns:
      the launch sets
    • findAll

      public static List<LaunchSet> findAll(int start, int end)
      Returns a range of all the launch sets.

      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 LaunchSetModelImpl.

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

      public static List<LaunchSet> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator)
      Returns an ordered range of all the launch sets.

      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 LaunchSetModelImpl.

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

      public static List<LaunchSet> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<LaunchSet> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the launch sets.

      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 LaunchSetModelImpl.

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

      public static void removeAll()
      Removes all the launch sets from the database.
    • countAll

      public static int countAll()
      Returns the number of launch sets.
      Returns:
      the number of launch sets
    • getPersistence

      public static LaunchSetPersistence getPersistence()
    • setPersistence

      public static void setPersistence(LaunchSetPersistence persistence)