Liferay 7.0-ce-b4

com.liferay.portlet.trash.service.persistence
Class TrashEntryUtil

java.lang.Object
  extended by com.liferay.portlet.trash.service.persistence.TrashEntryUtil

@ProviderType
public class TrashEntryUtil
extends Object

The persistence utility for the trash entry service. This utility wraps TrashEntryPersistenceImpl 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:
TrashEntryPersistence, TrashEntryPersistenceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
TrashEntryUtil()
           
 
Method Summary
static void cacheResult(List<TrashEntry> trashEntries)
          Caches the trash entries in the entity cache if it is enabled.
static void cacheResult(TrashEntry trashEntry)
          Caches the trash entry in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(TrashEntry trashEntry)
           
static int countAll()
          Returns the number of trash entries.
static int countByC_C(long classNameId, long classPK)
          Returns the number of trash entries where classNameId = ? and classPK = ?.
static int countByCompanyId(long companyId)
          Returns the number of trash entries where companyId = ?.
static int countByG_C(long groupId, long classNameId)
          Returns the number of trash entries where groupId = ? and classNameId = ?.
static int countByG_LtCD(long groupId, Date createDate)
          Returns the number of trash entries where groupId = ? and createDate < ?.
static int countByGroupId(long groupId)
          Returns the number of trash entries where groupId = ?.
static long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static TrashEntry create(long entryId)
          Creates a new trash entry with the primary key.
static TrashEntry fetchByC_C(long classNameId, long classPK)
          Returns the trash entry where classNameId = ? and classPK = ? or returns null if it could not be found.
static TrashEntry fetchByC_C(long classNameId, long classPK, boolean retrieveFromCache)
          Returns the trash entry where classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.
static TrashEntry fetchByCompanyId_First(long companyId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the first trash entry in the ordered set where companyId = ?.
static TrashEntry fetchByCompanyId_Last(long companyId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the last trash entry in the ordered set where companyId = ?.
static TrashEntry fetchByG_C_First(long groupId, long classNameId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the first trash entry in the ordered set where groupId = ? and classNameId = ?.
static TrashEntry fetchByG_C_Last(long groupId, long classNameId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the last trash entry in the ordered set where groupId = ? and classNameId = ?.
static TrashEntry fetchByG_LtCD_First(long groupId, Date createDate, OrderByComparator<TrashEntry> orderByComparator)
          Returns the first trash entry in the ordered set where groupId = ? and createDate < ?.
static TrashEntry fetchByG_LtCD_Last(long groupId, Date createDate, OrderByComparator<TrashEntry> orderByComparator)
          Returns the last trash entry in the ordered set where groupId = ? and createDate < ?.
static TrashEntry fetchByGroupId_First(long groupId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the first trash entry in the ordered set where groupId = ?.
static TrashEntry fetchByGroupId_Last(long groupId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the last trash entry in the ordered set where groupId = ?.
static TrashEntry fetchByPrimaryKey(long entryId)
          Returns the trash entry with the primary key or returns null if it could not be found.
static Map<Serializable,TrashEntry> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
           
static List<TrashEntry> findAll()
          Returns all the trash entries.
static List<TrashEntry> findAll(int start, int end)
          Returns a range of all the trash entries.
static List<TrashEntry> findAll(int start, int end, OrderByComparator<TrashEntry> orderByComparator)
          Returns an ordered range of all the trash entries.
static List<TrashEntry> findAll(int start, int end, OrderByComparator<TrashEntry> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the trash entries.
static TrashEntry findByC_C(long classNameId, long classPK)
          Returns the trash entry where classNameId = ? and classPK = ? or throws a NoSuchEntryException if it could not be found.
static TrashEntry findByCompanyId_First(long companyId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the first trash entry in the ordered set where companyId = ?.
static TrashEntry findByCompanyId_Last(long companyId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the last trash entry in the ordered set where companyId = ?.
static TrashEntry[] findByCompanyId_PrevAndNext(long entryId, long companyId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the trash entries before and after the current trash entry in the ordered set where companyId = ?.
static List<TrashEntry> findByCompanyId(long companyId)
          Returns all the trash entries where companyId = ?.
static List<TrashEntry> findByCompanyId(long companyId, int start, int end)
          Returns a range of all the trash entries where companyId = ?.
static List<TrashEntry> findByCompanyId(long companyId, int start, int end, OrderByComparator<TrashEntry> orderByComparator)
          Returns an ordered range of all the trash entries where companyId = ?.
static List<TrashEntry> findByCompanyId(long companyId, int start, int end, OrderByComparator<TrashEntry> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the trash entries where companyId = ?.
static TrashEntry findByG_C_First(long groupId, long classNameId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the first trash entry in the ordered set where groupId = ? and classNameId = ?.
static TrashEntry findByG_C_Last(long groupId, long classNameId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the last trash entry in the ordered set where groupId = ? and classNameId = ?.
static TrashEntry[] findByG_C_PrevAndNext(long entryId, long groupId, long classNameId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the trash entries before and after the current trash entry in the ordered set where groupId = ? and classNameId = ?.
static List<TrashEntry> findByG_C(long groupId, long classNameId)
          Returns all the trash entries where groupId = ? and classNameId = ?.
static List<TrashEntry> findByG_C(long groupId, long classNameId, int start, int end)
          Returns a range of all the trash entries where groupId = ? and classNameId = ?.
static List<TrashEntry> findByG_C(long groupId, long classNameId, int start, int end, OrderByComparator<TrashEntry> orderByComparator)
          Returns an ordered range of all the trash entries where groupId = ? and classNameId = ?.
static List<TrashEntry> findByG_C(long groupId, long classNameId, int start, int end, OrderByComparator<TrashEntry> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the trash entries where groupId = ? and classNameId = ?.
static TrashEntry findByG_LtCD_First(long groupId, Date createDate, OrderByComparator<TrashEntry> orderByComparator)
          Returns the first trash entry in the ordered set where groupId = ? and createDate < ?.
static TrashEntry findByG_LtCD_Last(long groupId, Date createDate, OrderByComparator<TrashEntry> orderByComparator)
          Returns the last trash entry in the ordered set where groupId = ? and createDate < ?.
static TrashEntry[] findByG_LtCD_PrevAndNext(long entryId, long groupId, Date createDate, OrderByComparator<TrashEntry> orderByComparator)
          Returns the trash entries before and after the current trash entry in the ordered set where groupId = ? and createDate < ?.
static List<TrashEntry> findByG_LtCD(long groupId, Date createDate)
          Returns all the trash entries where groupId = ? and createDate < ?.
static List<TrashEntry> findByG_LtCD(long groupId, Date createDate, int start, int end)
          Returns a range of all the trash entries where groupId = ? and createDate < ?.
static List<TrashEntry> findByG_LtCD(long groupId, Date createDate, int start, int end, OrderByComparator<TrashEntry> orderByComparator)
          Returns an ordered range of all the trash entries where groupId = ? and createDate < ?.
static List<TrashEntry> findByG_LtCD(long groupId, Date createDate, int start, int end, OrderByComparator<TrashEntry> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the trash entries where groupId = ? and createDate < ?.
static TrashEntry findByGroupId_First(long groupId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the first trash entry in the ordered set where groupId = ?.
static TrashEntry findByGroupId_Last(long groupId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the last trash entry in the ordered set where groupId = ?.
static TrashEntry[] findByGroupId_PrevAndNext(long entryId, long groupId, OrderByComparator<TrashEntry> orderByComparator)
          Returns the trash entries before and after the current trash entry in the ordered set where groupId = ?.
static List<TrashEntry> findByGroupId(long groupId)
          Returns all the trash entries where groupId = ?.
static List<TrashEntry> findByGroupId(long groupId, int start, int end)
          Returns a range of all the trash entries where groupId = ?.
static List<TrashEntry> findByGroupId(long groupId, int start, int end, OrderByComparator<TrashEntry> orderByComparator)
          Returns an ordered range of all the trash entries where groupId = ?.
static List<TrashEntry> findByGroupId(long groupId, int start, int end, OrderByComparator<TrashEntry> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the trash entries where groupId = ?.
static TrashEntry findByPrimaryKey(long entryId)
          Returns the trash entry with the primary key or throws a NoSuchEntryException if it could not be found.
static List<TrashEntry> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<TrashEntry> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<TrashEntry> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<TrashEntry> orderByComparator)
           
static TrashEntryPersistence getPersistence()
           
static TrashEntry remove(long entryId)
          Removes the trash entry with the primary key from the database.
static void removeAll()
          Removes all the trash entries from the database.
static TrashEntry removeByC_C(long classNameId, long classPK)
          Removes the trash entry where classNameId = ? and classPK = ? from the database.
static void removeByCompanyId(long companyId)
          Removes all the trash entries where companyId = ? from the database.
static void removeByG_C(long groupId, long classNameId)
          Removes all the trash entries where groupId = ? and classNameId = ? from the database.
static void removeByG_LtCD(long groupId, Date createDate)
          Removes all the trash entries where groupId = ? and createDate < ? from the database.
static void removeByGroupId(long groupId)
          Removes all the trash entries where groupId = ? from the database.
static TrashEntry update(TrashEntry trashEntry)
           
static TrashEntry update(TrashEntry trashEntry, ServiceContext serviceContext)
           
static TrashEntry updateImpl(TrashEntry trashEntry)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TrashEntryUtil

public TrashEntryUtil()
Method Detail

clearCache

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

clearCache

public static void clearCache(TrashEntry trashEntry)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<TrashEntry> findWithDynamicQuery(DynamicQuery dynamicQuery)
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<TrashEntry> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                    int start,
                                                    int end)
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<TrashEntry> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                    int start,
                                                    int end,
                                                    OrderByComparator<TrashEntry> orderByComparator)
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

update

public static TrashEntry update(TrashEntry trashEntry)
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel)

update

public static TrashEntry update(TrashEntry trashEntry,
                                ServiceContext serviceContext)
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, ServiceContext)

findByGroupId

public static List<TrashEntry> findByGroupId(long groupId)
Returns all the trash entries where groupId = ?.

Parameters:
groupId - the group ID
Returns:
the matching trash entries

findByGroupId

public static List<TrashEntry> findByGroupId(long groupId,
                                             int start,
                                             int end)
Returns a range of all the trash entries where groupId = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
Returns:
the range of matching trash entries

findByGroupId

public static List<TrashEntry> findByGroupId(long groupId,
                                             int start,
                                             int end,
                                             OrderByComparator<TrashEntry> orderByComparator)
Returns an ordered range of all the trash entries where groupId = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching trash entries

findByGroupId

public static List<TrashEntry> findByGroupId(long groupId,
                                             int start,
                                             int end,
                                             OrderByComparator<TrashEntry> orderByComparator,
                                             boolean retrieveFromCache)
Returns an ordered range of all the trash entries where groupId = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching trash entries

findByGroupId_First

public static TrashEntry findByGroupId_First(long groupId,
                                             OrderByComparator<TrashEntry> orderByComparator)
                                      throws NoSuchEntryException
Returns the first trash entry in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching trash entry
Throws:
NoSuchEntryException - if a matching trash entry could not be found

fetchByGroupId_First

public static TrashEntry fetchByGroupId_First(long groupId,
                                              OrderByComparator<TrashEntry> orderByComparator)
Returns the first trash entry in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching trash entry, or null if a matching trash entry could not be found

findByGroupId_Last

public static TrashEntry findByGroupId_Last(long groupId,
                                            OrderByComparator<TrashEntry> orderByComparator)
                                     throws NoSuchEntryException
Returns the last trash entry in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching trash entry
Throws:
NoSuchEntryException - if a matching trash entry could not be found

fetchByGroupId_Last

public static TrashEntry fetchByGroupId_Last(long groupId,
                                             OrderByComparator<TrashEntry> orderByComparator)
Returns the last trash entry in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching trash entry, or null if a matching trash entry could not be found

findByGroupId_PrevAndNext

public static TrashEntry[] findByGroupId_PrevAndNext(long entryId,
                                                     long groupId,
                                                     OrderByComparator<TrashEntry> orderByComparator)
                                              throws NoSuchEntryException
Returns the trash entries before and after the current trash entry in the ordered set where groupId = ?.

Parameters:
entryId - the primary key of the current trash entry
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next trash entry
Throws:
NoSuchEntryException - if a trash entry with the primary key could not be found

removeByGroupId

public static void removeByGroupId(long groupId)
Removes all the trash entries where groupId = ? from the database.

Parameters:
groupId - the group ID

countByGroupId

public static int countByGroupId(long groupId)
Returns the number of trash entries where groupId = ?.

Parameters:
groupId - the group ID
Returns:
the number of matching trash entries

findByCompanyId

public static List<TrashEntry> findByCompanyId(long companyId)
Returns all the trash entries where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the matching trash entries

findByCompanyId

public static List<TrashEntry> findByCompanyId(long companyId,
                                               int start,
                                               int end)
Returns a range of all the trash entries 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
companyId - the company ID
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
Returns:
the range of matching trash entries

findByCompanyId

public static List<TrashEntry> findByCompanyId(long companyId,
                                               int start,
                                               int end,
                                               OrderByComparator<TrashEntry> orderByComparator)
Returns an ordered range of all the trash entries 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

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

findByCompanyId

public static List<TrashEntry> findByCompanyId(long companyId,
                                               int start,
                                               int end,
                                               OrderByComparator<TrashEntry> orderByComparator,
                                               boolean retrieveFromCache)
Returns an ordered range of all the trash entries 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
companyId - the company ID
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching trash entries

findByCompanyId_First

public static TrashEntry findByCompanyId_First(long companyId,
                                               OrderByComparator<TrashEntry> orderByComparator)
                                        throws NoSuchEntryException
Returns the first trash entry 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 trash entry
Throws:
NoSuchEntryException - if a matching trash entry could not be found

fetchByCompanyId_First

public static TrashEntry fetchByCompanyId_First(long companyId,
                                                OrderByComparator<TrashEntry> orderByComparator)
Returns the first trash entry 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 trash entry, or null if a matching trash entry could not be found

findByCompanyId_Last

public static TrashEntry findByCompanyId_Last(long companyId,
                                              OrderByComparator<TrashEntry> orderByComparator)
                                       throws NoSuchEntryException
Returns the last trash entry 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 trash entry
Throws:
NoSuchEntryException - if a matching trash entry could not be found

fetchByCompanyId_Last

public static TrashEntry fetchByCompanyId_Last(long companyId,
                                               OrderByComparator<TrashEntry> orderByComparator)
Returns the last trash entry 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 trash entry, or null if a matching trash entry could not be found

findByCompanyId_PrevAndNext

public static TrashEntry[] findByCompanyId_PrevAndNext(long entryId,
                                                       long companyId,
                                                       OrderByComparator<TrashEntry> orderByComparator)
                                                throws NoSuchEntryException
Returns the trash entries before and after the current trash entry in the ordered set where companyId = ?.

Parameters:
entryId - the primary key of the current trash entry
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next trash entry
Throws:
NoSuchEntryException - if a trash entry with the primary key could not be found

removeByCompanyId

public static void removeByCompanyId(long companyId)
Removes all the trash entries where companyId = ? from the database.

Parameters:
companyId - the company ID

countByCompanyId

public static int countByCompanyId(long companyId)
Returns the number of trash entries where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the number of matching trash entries

findByG_LtCD

public static List<TrashEntry> findByG_LtCD(long groupId,
                                            Date createDate)
Returns all the trash entries where groupId = ? and createDate < ?.

Parameters:
groupId - the group ID
createDate - the create date
Returns:
the matching trash entries

findByG_LtCD

public static List<TrashEntry> findByG_LtCD(long groupId,
                                            Date createDate,
                                            int start,
                                            int end)
Returns a range of all the trash entries where groupId = ? and createDate < ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
createDate - the create date
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
Returns:
the range of matching trash entries

findByG_LtCD

public static List<TrashEntry> findByG_LtCD(long groupId,
                                            Date createDate,
                                            int start,
                                            int end,
                                            OrderByComparator<TrashEntry> orderByComparator)
Returns an ordered range of all the trash entries where groupId = ? and createDate < ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
createDate - the create date
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching trash entries

findByG_LtCD

public static List<TrashEntry> findByG_LtCD(long groupId,
                                            Date createDate,
                                            int start,
                                            int end,
                                            OrderByComparator<TrashEntry> orderByComparator,
                                            boolean retrieveFromCache)
Returns an ordered range of all the trash entries where groupId = ? and createDate < ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
createDate - the create date
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching trash entries

findByG_LtCD_First

public static TrashEntry findByG_LtCD_First(long groupId,
                                            Date createDate,
                                            OrderByComparator<TrashEntry> orderByComparator)
                                     throws NoSuchEntryException
Returns the first trash entry in the ordered set where groupId = ? and createDate < ?.

Parameters:
groupId - the group ID
createDate - the create date
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching trash entry
Throws:
NoSuchEntryException - if a matching trash entry could not be found

fetchByG_LtCD_First

public static TrashEntry fetchByG_LtCD_First(long groupId,
                                             Date createDate,
                                             OrderByComparator<TrashEntry> orderByComparator)
Returns the first trash entry in the ordered set where groupId = ? and createDate < ?.

Parameters:
groupId - the group ID
createDate - the create date
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching trash entry, or null if a matching trash entry could not be found

findByG_LtCD_Last

public static TrashEntry findByG_LtCD_Last(long groupId,
                                           Date createDate,
                                           OrderByComparator<TrashEntry> orderByComparator)
                                    throws NoSuchEntryException
Returns the last trash entry in the ordered set where groupId = ? and createDate < ?.

Parameters:
groupId - the group ID
createDate - the create date
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching trash entry
Throws:
NoSuchEntryException - if a matching trash entry could not be found

fetchByG_LtCD_Last

public static TrashEntry fetchByG_LtCD_Last(long groupId,
                                            Date createDate,
                                            OrderByComparator<TrashEntry> orderByComparator)
Returns the last trash entry in the ordered set where groupId = ? and createDate < ?.

Parameters:
groupId - the group ID
createDate - the create date
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching trash entry, or null if a matching trash entry could not be found

findByG_LtCD_PrevAndNext

public static TrashEntry[] findByG_LtCD_PrevAndNext(long entryId,
                                                    long groupId,
                                                    Date createDate,
                                                    OrderByComparator<TrashEntry> orderByComparator)
                                             throws NoSuchEntryException
Returns the trash entries before and after the current trash entry in the ordered set where groupId = ? and createDate < ?.

Parameters:
entryId - the primary key of the current trash entry
groupId - the group ID
createDate - the create date
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next trash entry
Throws:
NoSuchEntryException - if a trash entry with the primary key could not be found

removeByG_LtCD

public static void removeByG_LtCD(long groupId,
                                  Date createDate)
Removes all the trash entries where groupId = ? and createDate < ? from the database.

Parameters:
groupId - the group ID
createDate - the create date

countByG_LtCD

public static int countByG_LtCD(long groupId,
                                Date createDate)
Returns the number of trash entries where groupId = ? and createDate < ?.

Parameters:
groupId - the group ID
createDate - the create date
Returns:
the number of matching trash entries

findByG_C

public static List<TrashEntry> findByG_C(long groupId,
                                         long classNameId)
Returns all the trash entries where groupId = ? and classNameId = ?.

Parameters:
groupId - the group ID
classNameId - the class name ID
Returns:
the matching trash entries

findByG_C

public static List<TrashEntry> findByG_C(long groupId,
                                         long classNameId,
                                         int start,
                                         int end)
Returns a range of all the trash entries where groupId = ? and classNameId = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
classNameId - the class name ID
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
Returns:
the range of matching trash entries

findByG_C

public static List<TrashEntry> findByG_C(long groupId,
                                         long classNameId,
                                         int start,
                                         int end,
                                         OrderByComparator<TrashEntry> orderByComparator)
Returns an ordered range of all the trash entries where groupId = ? and classNameId = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
classNameId - the class name ID
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching trash entries

findByG_C

public static List<TrashEntry> findByG_C(long groupId,
                                         long classNameId,
                                         int start,
                                         int end,
                                         OrderByComparator<TrashEntry> orderByComparator,
                                         boolean retrieveFromCache)
Returns an ordered range of all the trash entries where groupId = ? and classNameId = ?.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
classNameId - the class name ID
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching trash entries

findByG_C_First

public static TrashEntry findByG_C_First(long groupId,
                                         long classNameId,
                                         OrderByComparator<TrashEntry> orderByComparator)
                                  throws NoSuchEntryException
Returns the first trash entry in the ordered set where groupId = ? and classNameId = ?.

Parameters:
groupId - the group ID
classNameId - the class name ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching trash entry
Throws:
NoSuchEntryException - if a matching trash entry could not be found

fetchByG_C_First

public static TrashEntry fetchByG_C_First(long groupId,
                                          long classNameId,
                                          OrderByComparator<TrashEntry> orderByComparator)
Returns the first trash entry in the ordered set where groupId = ? and classNameId = ?.

Parameters:
groupId - the group ID
classNameId - the class name ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching trash entry, or null if a matching trash entry could not be found

findByG_C_Last

public static TrashEntry findByG_C_Last(long groupId,
                                        long classNameId,
                                        OrderByComparator<TrashEntry> orderByComparator)
                                 throws NoSuchEntryException
Returns the last trash entry in the ordered set where groupId = ? and classNameId = ?.

Parameters:
groupId - the group ID
classNameId - the class name ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching trash entry
Throws:
NoSuchEntryException - if a matching trash entry could not be found

fetchByG_C_Last

public static TrashEntry fetchByG_C_Last(long groupId,
                                         long classNameId,
                                         OrderByComparator<TrashEntry> orderByComparator)
Returns the last trash entry in the ordered set where groupId = ? and classNameId = ?.

Parameters:
groupId - the group ID
classNameId - the class name ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching trash entry, or null if a matching trash entry could not be found

findByG_C_PrevAndNext

public static TrashEntry[] findByG_C_PrevAndNext(long entryId,
                                                 long groupId,
                                                 long classNameId,
                                                 OrderByComparator<TrashEntry> orderByComparator)
                                          throws NoSuchEntryException
Returns the trash entries before and after the current trash entry in the ordered set where groupId = ? and classNameId = ?.

Parameters:
entryId - the primary key of the current trash entry
groupId - the group ID
classNameId - the class name ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next trash entry
Throws:
NoSuchEntryException - if a trash entry with the primary key could not be found

removeByG_C

public static void removeByG_C(long groupId,
                               long classNameId)
Removes all the trash entries where groupId = ? and classNameId = ? from the database.

Parameters:
groupId - the group ID
classNameId - the class name ID

countByG_C

public static int countByG_C(long groupId,
                             long classNameId)
Returns the number of trash entries where groupId = ? and classNameId = ?.

Parameters:
groupId - the group ID
classNameId - the class name ID
Returns:
the number of matching trash entries

findByC_C

public static TrashEntry findByC_C(long classNameId,
                                   long classPK)
                            throws NoSuchEntryException
Returns the trash entry where classNameId = ? and classPK = ? or throws a NoSuchEntryException if it could not be found.

Parameters:
classNameId - the class name ID
classPK - the class p k
Returns:
the matching trash entry
Throws:
NoSuchEntryException - if a matching trash entry could not be found

fetchByC_C

public static TrashEntry fetchByC_C(long classNameId,
                                    long classPK)
Returns the trash entry where classNameId = ? and classPK = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
classNameId - the class name ID
classPK - the class p k
Returns:
the matching trash entry, or null if a matching trash entry could not be found

fetchByC_C

public static TrashEntry fetchByC_C(long classNameId,
                                    long classPK,
                                    boolean retrieveFromCache)
Returns the trash entry where classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
classNameId - the class name ID
classPK - the class p k
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the matching trash entry, or null if a matching trash entry could not be found

removeByC_C

public static TrashEntry removeByC_C(long classNameId,
                                     long classPK)
                              throws NoSuchEntryException
Removes the trash entry where classNameId = ? and classPK = ? from the database.

Parameters:
classNameId - the class name ID
classPK - the class p k
Returns:
the trash entry that was removed
Throws:
NoSuchEntryException

countByC_C

public static int countByC_C(long classNameId,
                             long classPK)
Returns the number of trash entries where classNameId = ? and classPK = ?.

Parameters:
classNameId - the class name ID
classPK - the class p k
Returns:
the number of matching trash entries

cacheResult

public static void cacheResult(TrashEntry trashEntry)
Caches the trash entry in the entity cache if it is enabled.

Parameters:
trashEntry - the trash entry

cacheResult

public static void cacheResult(List<TrashEntry> trashEntries)
Caches the trash entries in the entity cache if it is enabled.

Parameters:
trashEntries - the trash entries

create

public static TrashEntry create(long entryId)
Creates a new trash entry with the primary key. Does not add the trash entry to the database.

Parameters:
entryId - the primary key for the new trash entry
Returns:
the new trash entry

remove

public static TrashEntry remove(long entryId)
                         throws NoSuchEntryException
Removes the trash entry with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
entryId - the primary key of the trash entry
Returns:
the trash entry that was removed
Throws:
NoSuchEntryException - if a trash entry with the primary key could not be found

updateImpl

public static TrashEntry updateImpl(TrashEntry trashEntry)

findByPrimaryKey

public static TrashEntry findByPrimaryKey(long entryId)
                                   throws NoSuchEntryException
Returns the trash entry with the primary key or throws a NoSuchEntryException if it could not be found.

Parameters:
entryId - the primary key of the trash entry
Returns:
the trash entry
Throws:
NoSuchEntryException - if a trash entry with the primary key could not be found

fetchByPrimaryKey

public static TrashEntry fetchByPrimaryKey(long entryId)
Returns the trash entry with the primary key or returns null if it could not be found.

Parameters:
entryId - the primary key of the trash entry
Returns:
the trash entry, or null if a trash entry with the primary key could not be found

fetchByPrimaryKeys

public static Map<Serializable,TrashEntry> fetchByPrimaryKeys(Set<Serializable> primaryKeys)

findAll

public static List<TrashEntry> findAll()
Returns all the trash entries.

Returns:
the trash entries

findAll

public static List<TrashEntry> findAll(int start,
                                       int end)
Returns a range of all the trash entries.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
Returns:
the range of trash entries

findAll

public static List<TrashEntry> findAll(int start,
                                       int end,
                                       OrderByComparator<TrashEntry> orderByComparator)
Returns an ordered range of all the trash entries.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

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

findAll

public static List<TrashEntry> findAll(int start,
                                       int end,
                                       OrderByComparator<TrashEntry> orderByComparator,
                                       boolean retrieveFromCache)
Returns an ordered range of all the trash entries.

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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of trash entries
end - the upper bound of the range of trash entries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of trash entries

removeAll

public static void removeAll()
Removes all the trash entries from the database.


countAll

public static int countAll()
Returns the number of trash entries.

Returns:
the number of trash entries

getPersistence

public static TrashEntryPersistence getPersistence()

Liferay 7.0-ce-b4