Liferay 6.0.5

com.liferay.portlet.calendar.service.persistence
Interface CalEventPersistence

All Superinterfaces:
BasePersistence<CalEvent>
All Known Implementing Classes:
CalEventPersistenceImpl

public interface CalEventPersistence
extends BasePersistence<CalEvent>

The persistence interface for the cal event service.

Never modify or reference this interface directly. Always use CalEventUtil to access the cal event persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

See Also:
CalEventPersistenceImpl, CalEventUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 void cacheResult(CalEvent calEvent)
          Caches the cal event in the entity cache if it is enabled.
 void cacheResult(List<CalEvent> calEvents)
          Caches the cal events in the entity cache if it is enabled.
 int countAll()
          Counts all the cal events.
 int countByCompanyId(long companyId)
          Counts all the cal events where companyId = ?.
 int countByG_R(long groupId, boolean repeating)
          Counts all the cal events where groupId = ? and repeating = ?.
 int countByG_T(long groupId, String type)
          Counts all the cal events where groupId = ? and type = ?.
 int countByGroupId(long groupId)
          Counts all the cal events where groupId = ?.
 int countByNotRemindBy(int remindBy)
          Counts all the cal events where remindBy ≠ ?.
 int countByUUID_G(String uuid, long groupId)
          Counts all the cal events where uuid = ? and groupId = ?.
 int countByUuid(String uuid)
          Counts all the cal events where uuid = ?.
 CalEvent create(long eventId)
          Creates a new cal event with the primary key.
 CalEvent fetchByPrimaryKey(long eventId)
          Finds the cal event with the primary key or returns null if it could not be found.
 CalEvent fetchByUUID_G(String uuid, long groupId)
          Finds the cal event where uuid = ? and groupId = ? or returns null if it could not be found.
 CalEvent fetchByUUID_G(String uuid, long groupId, boolean retrieveFromCache)
          Finds the cal event where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
 int filterCountByG_R(long groupId, boolean repeating)
          Filters by the user's permissions and counts all the cal events where groupId = ? and repeating = ?.
 int filterCountByG_T(long groupId, String type)
          Filters by the user's permissions and counts all the cal events where groupId = ? and type = ?.
 int filterCountByGroupId(long groupId)
          Filters by the user's permissions and counts all the cal events where groupId = ?.
 List<CalEvent> filterFindByG_R(long groupId, boolean repeating)
          Filters by the user's permissions and finds all the cal events where groupId = ? and repeating = ?.
 List<CalEvent> filterFindByG_R(long groupId, boolean repeating, int start, int end)
          Filters by the user's permissions and finds a range of all the cal events where groupId = ? and repeating = ?.
 List<CalEvent> filterFindByG_R(long groupId, boolean repeating, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the cal events where groupId = ? and repeating = ?.
 List<CalEvent> filterFindByG_T(long groupId, String type)
          Filters by the user's permissions and finds all the cal events where groupId = ? and type = ?.
 List<CalEvent> filterFindByG_T(long groupId, String type, int start, int end)
          Filters by the user's permissions and finds a range of all the cal events where groupId = ? and type = ?.
 List<CalEvent> filterFindByG_T(long groupId, String type, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the cal events where groupId = ? and type = ?.
 List<CalEvent> filterFindByGroupId(long groupId)
          Filters by the user's permissions and finds all the cal events where groupId = ?.
 List<CalEvent> filterFindByGroupId(long groupId, int start, int end)
          Filters by the user's permissions and finds a range of all the cal events where groupId = ?.
 List<CalEvent> filterFindByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the cal events where groupId = ?.
 List<CalEvent> findAll()
          Finds all the cal events.
 List<CalEvent> findAll(int start, int end)
          Finds a range of all the cal events.
 List<CalEvent> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the cal events.
 CalEvent findByCompanyId_First(long companyId, OrderByComparator orderByComparator)
          Finds the first cal event in the ordered set where companyId = ?.
 CalEvent findByCompanyId_Last(long companyId, OrderByComparator orderByComparator)
          Finds the last cal event in the ordered set where companyId = ?.
 CalEvent[] findByCompanyId_PrevAndNext(long eventId, long companyId, OrderByComparator orderByComparator)
          Finds the cal events before and after the current cal event in the ordered set where companyId = ?.
 List<CalEvent> findByCompanyId(long companyId)
          Finds all the cal events where companyId = ?.
 List<CalEvent> findByCompanyId(long companyId, int start, int end)
          Finds a range of all the cal events where companyId = ?.
 List<CalEvent> findByCompanyId(long companyId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the cal events where companyId = ?.
 CalEvent findByG_R_First(long groupId, boolean repeating, OrderByComparator orderByComparator)
          Finds the first cal event in the ordered set where groupId = ? and repeating = ?.
 CalEvent findByG_R_Last(long groupId, boolean repeating, OrderByComparator orderByComparator)
          Finds the last cal event in the ordered set where groupId = ? and repeating = ?.
 CalEvent[] findByG_R_PrevAndNext(long eventId, long groupId, boolean repeating, OrderByComparator orderByComparator)
          Finds the cal events before and after the current cal event in the ordered set where groupId = ? and repeating = ?.
 List<CalEvent> findByG_R(long groupId, boolean repeating)
          Finds all the cal events where groupId = ? and repeating = ?.
 List<CalEvent> findByG_R(long groupId, boolean repeating, int start, int end)
          Finds a range of all the cal events where groupId = ? and repeating = ?.
 List<CalEvent> findByG_R(long groupId, boolean repeating, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the cal events where groupId = ? and repeating = ?.
 CalEvent findByG_T_First(long groupId, String type, OrderByComparator orderByComparator)
          Finds the first cal event in the ordered set where groupId = ? and type = ?.
 CalEvent findByG_T_Last(long groupId, String type, OrderByComparator orderByComparator)
          Finds the last cal event in the ordered set where groupId = ? and type = ?.
 CalEvent[] findByG_T_PrevAndNext(long eventId, long groupId, String type, OrderByComparator orderByComparator)
          Finds the cal events before and after the current cal event in the ordered set where groupId = ? and type = ?.
 List<CalEvent> findByG_T(long groupId, String type)
          Finds all the cal events where groupId = ? and type = ?.
 List<CalEvent> findByG_T(long groupId, String type, int start, int end)
          Finds a range of all the cal events where groupId = ? and type = ?.
 List<CalEvent> findByG_T(long groupId, String type, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the cal events where groupId = ? and type = ?.
 CalEvent findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first cal event in the ordered set where groupId = ?.
 CalEvent findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last cal event in the ordered set where groupId = ?.
 CalEvent[] findByGroupId_PrevAndNext(long eventId, long groupId, OrderByComparator orderByComparator)
          Finds the cal events before and after the current cal event in the ordered set where groupId = ?.
 List<CalEvent> findByGroupId(long groupId)
          Finds all the cal events where groupId = ?.
 List<CalEvent> findByGroupId(long groupId, int start, int end)
          Finds a range of all the cal events where groupId = ?.
 List<CalEvent> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the cal events where groupId = ?.
 CalEvent findByNotRemindBy_First(int remindBy, OrderByComparator orderByComparator)
          Finds the first cal event in the ordered set where remindBy ≠ ?.
 CalEvent findByNotRemindBy_Last(int remindBy, OrderByComparator orderByComparator)
          Finds the last cal event in the ordered set where remindBy ≠ ?.
 CalEvent[] findByNotRemindBy_PrevAndNext(long eventId, int remindBy, OrderByComparator orderByComparator)
          Finds the cal events before and after the current cal event in the ordered set where remindBy ≠ ?.
 List<CalEvent> findByNotRemindBy(int remindBy)
          Finds all the cal events where remindBy ≠ ?.
 List<CalEvent> findByNotRemindBy(int remindBy, int start, int end)
          Finds a range of all the cal events where remindBy ≠ ?.
 List<CalEvent> findByNotRemindBy(int remindBy, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the cal events where remindBy ≠ ?.
 CalEvent findByPrimaryKey(long eventId)
          Finds the cal event with the primary key or throws a NoSuchEventException if it could not be found.
 CalEvent findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Finds the first cal event in the ordered set where uuid = ?.
 CalEvent findByUUID_G(String uuid, long groupId)
          Finds the cal event where uuid = ? and groupId = ? or throws a NoSuchEventException if it could not be found.
 CalEvent findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Finds the last cal event in the ordered set where uuid = ?.
 CalEvent[] findByUuid_PrevAndNext(long eventId, String uuid, OrderByComparator orderByComparator)
          Finds the cal events before and after the current cal event in the ordered set where uuid = ?.
 List<CalEvent> findByUuid(String uuid)
          Finds all the cal events where uuid = ?.
 List<CalEvent> findByUuid(String uuid, int start, int end)
          Finds a range of all the cal events where uuid = ?.
 List<CalEvent> findByUuid(String uuid, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the cal events where uuid = ?.
 CalEvent remove(long eventId)
          Removes the cal event with the primary key from the database.
 void removeAll()
          Removes all the cal events from the database.
 void removeByCompanyId(long companyId)
          Removes all the cal events where companyId = ? from the database.
 void removeByG_R(long groupId, boolean repeating)
          Removes all the cal events where groupId = ? and repeating = ? from the database.
 void removeByG_T(long groupId, String type)
          Removes all the cal events where groupId = ? and type = ? from the database.
 void removeByGroupId(long groupId)
          Removes all the cal events where groupId = ? from the database.
 void removeByNotRemindBy(int remindBy)
          Removes all the cal events where remindBy ≠ ? from the database.
 void removeByUUID_G(String uuid, long groupId)
          Removes the cal event where uuid = ? and groupId = ? from the database.
 void removeByUuid(String uuid)
          Removes all the cal events where uuid = ? from the database.
 CalEvent updateImpl(CalEvent calEvent, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(CalEvent calEvent)
Caches the cal event in the entity cache if it is enabled.

Parameters:
calEvent - the cal event to cache

cacheResult

void cacheResult(List<CalEvent> calEvents)
Caches the cal events in the entity cache if it is enabled.

Parameters:
calEvents - the cal events to cache

create

CalEvent create(long eventId)
Creates a new cal event with the primary key. Does not add the cal event to the database.

Parameters:
eventId - the primary key for the new cal event
Returns:
the new cal event

remove

CalEvent remove(long eventId)
                throws SystemException,
                       NoSuchEventException
Removes the cal event with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
eventId - the primary key of the cal event to remove
Returns:
the cal event that was removed
Throws:
NoSuchEventException - if a cal event with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

CalEvent updateImpl(CalEvent calEvent,
                    boolean merge)
                    throws SystemException
Throws:
SystemException

findByPrimaryKey

CalEvent findByPrimaryKey(long eventId)
                          throws SystemException,
                                 NoSuchEventException
Finds the cal event with the primary key or throws a NoSuchEventException if it could not be found.

Parameters:
eventId - the primary key of the cal event to find
Returns:
the cal event
Throws:
NoSuchEventException - if a cal event with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

CalEvent fetchByPrimaryKey(long eventId)
                           throws SystemException
Finds the cal event with the primary key or returns null if it could not be found.

Parameters:
eventId - the primary key of the cal event to find
Returns:
the cal event, or null if a cal event with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByUuid

List<CalEvent> findByUuid(String uuid)
                          throws SystemException
Finds all the cal events where uuid = ?.

Parameters:
uuid - the uuid to search with
Returns:
the matching cal events
Throws:
SystemException - if a system exception occurred

findByUuid

List<CalEvent> findByUuid(String uuid,
                          int start,
                          int end)
                          throws SystemException
Finds a range of all the cal events 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.

Parameters:
uuid - the uuid to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
Returns:
the range of matching cal events
Throws:
SystemException - if a system exception occurred

findByUuid

List<CalEvent> findByUuid(String uuid,
                          int start,
                          int end,
                          OrderByComparator orderByComparator)
                          throws SystemException
Finds an ordered range of all the cal events 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.

Parameters:
uuid - the uuid to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching cal events
Throws:
SystemException - if a system exception occurred

findByUuid_First

CalEvent findByUuid_First(String uuid,
                          OrderByComparator orderByComparator)
                          throws SystemException,
                                 NoSuchEventException
Finds the first cal event in the ordered set 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.

Parameters:
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByUuid_Last

CalEvent findByUuid_Last(String uuid,
                         OrderByComparator orderByComparator)
                         throws SystemException,
                                NoSuchEventException
Finds the last cal event in the ordered set 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.

Parameters:
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByUuid_PrevAndNext

CalEvent[] findByUuid_PrevAndNext(long eventId,
                                  String uuid,
                                  OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchEventException
Finds the cal events before and after the current cal event in the ordered set 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.

Parameters:
eventId - the primary key of the current cal event
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next cal event
Throws:
NoSuchEventException - if a cal event with the primary key could not be found
SystemException - if a system exception occurred

findByUUID_G

CalEvent findByUUID_G(String uuid,
                      long groupId)
                      throws SystemException,
                             NoSuchEventException
Finds the cal event where uuid = ? and groupId = ? or throws a NoSuchEventException if it could not be found.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

fetchByUUID_G

CalEvent fetchByUUID_G(String uuid,
                       long groupId)
                       throws SystemException
Finds the cal event where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching cal event, or null if a matching cal event could not be found
Throws:
SystemException - if a system exception occurred

fetchByUUID_G

CalEvent fetchByUUID_G(String uuid,
                       long groupId,
                       boolean retrieveFromCache)
                       throws SystemException
Finds the cal event where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching cal event, or null if a matching cal event could not be found
Throws:
SystemException - if a system exception occurred

findByCompanyId

List<CalEvent> findByCompanyId(long companyId)
                               throws SystemException
Finds all the cal events where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the matching cal events
Throws:
SystemException - if a system exception occurred

findByCompanyId

List<CalEvent> findByCompanyId(long companyId,
                               int start,
                               int end)
                               throws SystemException
Finds a range of all the cal events 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.

Parameters:
companyId - the company id to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
Returns:
the range of matching cal events
Throws:
SystemException - if a system exception occurred

findByCompanyId

List<CalEvent> findByCompanyId(long companyId,
                               int start,
                               int end,
                               OrderByComparator orderByComparator)
                               throws SystemException
Finds an ordered range of all the cal events 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.

Parameters:
companyId - the company id to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching cal events
Throws:
SystemException - if a system exception occurred

findByCompanyId_First

CalEvent findByCompanyId_First(long companyId,
                               OrderByComparator orderByComparator)
                               throws SystemException,
                                      NoSuchEventException
Finds the first cal event in the ordered set 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.

Parameters:
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByCompanyId_Last

CalEvent findByCompanyId_Last(long companyId,
                              OrderByComparator orderByComparator)
                              throws SystemException,
                                     NoSuchEventException
Finds the last cal event in the ordered set 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.

Parameters:
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByCompanyId_PrevAndNext

CalEvent[] findByCompanyId_PrevAndNext(long eventId,
                                       long companyId,
                                       OrderByComparator orderByComparator)
                                       throws SystemException,
                                              NoSuchEventException
Finds the cal events before and after the current cal event in the ordered set 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.

Parameters:
eventId - the primary key of the current cal event
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next cal event
Throws:
NoSuchEventException - if a cal event with the primary key could not be found
SystemException - if a system exception occurred

findByGroupId

List<CalEvent> findByGroupId(long groupId)
                             throws SystemException
Finds all the cal events where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching cal events
Throws:
SystemException - if a system exception occurred

findByGroupId

List<CalEvent> findByGroupId(long groupId,
                             int start,
                             int end)
                             throws SystemException
Finds a range of all the cal events 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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
Returns:
the range of matching cal events
Throws:
SystemException - if a system exception occurred

findByGroupId

List<CalEvent> findByGroupId(long groupId,
                             int start,
                             int end,
                             OrderByComparator orderByComparator)
                             throws SystemException
Finds an ordered range of all the cal events 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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching cal events
Throws:
SystemException - if a system exception occurred

findByGroupId_First

CalEvent findByGroupId_First(long groupId,
                             OrderByComparator orderByComparator)
                             throws SystemException,
                                    NoSuchEventException
Finds the first cal event in the ordered set 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.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByGroupId_Last

CalEvent findByGroupId_Last(long groupId,
                            OrderByComparator orderByComparator)
                            throws SystemException,
                                   NoSuchEventException
Finds the last cal event in the ordered set 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.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByGroupId_PrevAndNext

CalEvent[] findByGroupId_PrevAndNext(long eventId,
                                     long groupId,
                                     OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchEventException
Finds the cal events before and after the current cal event in the ordered set 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.

Parameters:
eventId - the primary key of the current cal event
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next cal event
Throws:
NoSuchEventException - if a cal event with the primary key could not be found
SystemException - if a system exception occurred

filterFindByGroupId

List<CalEvent> filterFindByGroupId(long groupId)
                                   throws SystemException
Filters by the user's permissions and finds all the cal events where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

List<CalEvent> filterFindByGroupId(long groupId,
                                   int start,
                                   int end)
                                   throws SystemException
Filters by the user's permissions and finds a range of all the cal events 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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
Returns:
the range of matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

List<CalEvent> filterFindByGroupId(long groupId,
                                   int start,
                                   int end,
                                   OrderByComparator orderByComparator)
                                   throws SystemException
Filters by the user's permissions and finds an ordered range of all the cal events 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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByNotRemindBy

List<CalEvent> findByNotRemindBy(int remindBy)
                                 throws SystemException
Finds all the cal events where remindBy ≠ ?.

Parameters:
remindBy - the remind by to search with
Returns:
the matching cal events
Throws:
SystemException - if a system exception occurred

findByNotRemindBy

List<CalEvent> findByNotRemindBy(int remindBy,
                                 int start,
                                 int end)
                                 throws SystemException
Finds a range of all the cal events where remindBy ≠ ?.

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.

Parameters:
remindBy - the remind by to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
Returns:
the range of matching cal events
Throws:
SystemException - if a system exception occurred

findByNotRemindBy

List<CalEvent> findByNotRemindBy(int remindBy,
                                 int start,
                                 int end,
                                 OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the cal events where remindBy ≠ ?.

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.

Parameters:
remindBy - the remind by to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching cal events
Throws:
SystemException - if a system exception occurred

findByNotRemindBy_First

CalEvent findByNotRemindBy_First(int remindBy,
                                 OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchEventException
Finds the first cal event in the ordered set where remindBy ≠ ?.

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.

Parameters:
remindBy - the remind by to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByNotRemindBy_Last

CalEvent findByNotRemindBy_Last(int remindBy,
                                OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchEventException
Finds the last cal event in the ordered set where remindBy ≠ ?.

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.

Parameters:
remindBy - the remind by to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByNotRemindBy_PrevAndNext

CalEvent[] findByNotRemindBy_PrevAndNext(long eventId,
                                         int remindBy,
                                         OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchEventException
Finds the cal events before and after the current cal event in the ordered set where remindBy ≠ ?.

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.

Parameters:
eventId - the primary key of the current cal event
remindBy - the remind by to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next cal event
Throws:
NoSuchEventException - if a cal event with the primary key could not be found
SystemException - if a system exception occurred

findByG_T

List<CalEvent> findByG_T(long groupId,
                         String type)
                         throws SystemException
Finds all the cal events where groupId = ? and type = ?.

Parameters:
groupId - the group id to search with
type - the type to search with
Returns:
the matching cal events
Throws:
SystemException - if a system exception occurred

findByG_T

List<CalEvent> findByG_T(long groupId,
                         String type,
                         int start,
                         int end)
                         throws SystemException
Finds a range of all the cal events where groupId = ? and type = ?.

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.

Parameters:
groupId - the group id to search with
type - the type to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
Returns:
the range of matching cal events
Throws:
SystemException - if a system exception occurred

findByG_T

List<CalEvent> findByG_T(long groupId,
                         String type,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                         throws SystemException
Finds an ordered range of all the cal events where groupId = ? and type = ?.

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.

Parameters:
groupId - the group id to search with
type - the type to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching cal events
Throws:
SystemException - if a system exception occurred

findByG_T_First

CalEvent findByG_T_First(long groupId,
                         String type,
                         OrderByComparator orderByComparator)
                         throws SystemException,
                                NoSuchEventException
Finds the first cal event in the ordered set where groupId = ? and type = ?.

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.

Parameters:
groupId - the group id to search with
type - the type to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByG_T_Last

CalEvent findByG_T_Last(long groupId,
                        String type,
                        OrderByComparator orderByComparator)
                        throws SystemException,
                               NoSuchEventException
Finds the last cal event in the ordered set where groupId = ? and type = ?.

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.

Parameters:
groupId - the group id to search with
type - the type to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByG_T_PrevAndNext

CalEvent[] findByG_T_PrevAndNext(long eventId,
                                 long groupId,
                                 String type,
                                 OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchEventException
Finds the cal events before and after the current cal event in the ordered set where groupId = ? and type = ?.

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.

Parameters:
eventId - the primary key of the current cal event
groupId - the group id to search with
type - the type to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next cal event
Throws:
NoSuchEventException - if a cal event with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_T

List<CalEvent> filterFindByG_T(long groupId,
                               String type)
                               throws SystemException
Filters by the user's permissions and finds all the cal events where groupId = ? and type = ?.

Parameters:
groupId - the group id to search with
type - the type to search with
Returns:
the matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_T

List<CalEvent> filterFindByG_T(long groupId,
                               String type,
                               int start,
                               int end)
                               throws SystemException
Filters by the user's permissions and finds a range of all the cal events where groupId = ? and type = ?.

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.

Parameters:
groupId - the group id to search with
type - the type to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
Returns:
the range of matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_T

List<CalEvent> filterFindByG_T(long groupId,
                               String type,
                               int start,
                               int end,
                               OrderByComparator orderByComparator)
                               throws SystemException
Filters by the user's permissions and finds an ordered range of all the cal events where groupId = ? and type = ?.

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.

Parameters:
groupId - the group id to search with
type - the type to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByG_R

List<CalEvent> findByG_R(long groupId,
                         boolean repeating)
                         throws SystemException
Finds all the cal events where groupId = ? and repeating = ?.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
Returns:
the matching cal events
Throws:
SystemException - if a system exception occurred

findByG_R

List<CalEvent> findByG_R(long groupId,
                         boolean repeating,
                         int start,
                         int end)
                         throws SystemException
Finds a range of all the cal events where groupId = ? and repeating = ?.

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.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
Returns:
the range of matching cal events
Throws:
SystemException - if a system exception occurred

findByG_R

List<CalEvent> findByG_R(long groupId,
                         boolean repeating,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                         throws SystemException
Finds an ordered range of all the cal events where groupId = ? and repeating = ?.

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.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching cal events
Throws:
SystemException - if a system exception occurred

findByG_R_First

CalEvent findByG_R_First(long groupId,
                         boolean repeating,
                         OrderByComparator orderByComparator)
                         throws SystemException,
                                NoSuchEventException
Finds the first cal event in the ordered set where groupId = ? and repeating = ?.

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.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByG_R_Last

CalEvent findByG_R_Last(long groupId,
                        boolean repeating,
                        OrderByComparator orderByComparator)
                        throws SystemException,
                               NoSuchEventException
Finds the last cal event in the ordered set where groupId = ? and repeating = ?.

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.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching cal event
Throws:
NoSuchEventException - if a matching cal event could not be found
SystemException - if a system exception occurred

findByG_R_PrevAndNext

CalEvent[] findByG_R_PrevAndNext(long eventId,
                                 long groupId,
                                 boolean repeating,
                                 OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchEventException
Finds the cal events before and after the current cal event in the ordered set where groupId = ? and repeating = ?.

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.

Parameters:
eventId - the primary key of the current cal event
groupId - the group id to search with
repeating - the repeating to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next cal event
Throws:
NoSuchEventException - if a cal event with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_R

List<CalEvent> filterFindByG_R(long groupId,
                               boolean repeating)
                               throws SystemException
Filters by the user's permissions and finds all the cal events where groupId = ? and repeating = ?.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
Returns:
the matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_R

List<CalEvent> filterFindByG_R(long groupId,
                               boolean repeating,
                               int start,
                               int end)
                               throws SystemException
Filters by the user's permissions and finds a range of all the cal events where groupId = ? and repeating = ?.

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.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
Returns:
the range of matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_R

List<CalEvent> filterFindByG_R(long groupId,
                               boolean repeating,
                               int start,
                               int end,
                               OrderByComparator orderByComparator)
                               throws SystemException
Filters by the user's permissions and finds an ordered range of all the cal events where groupId = ? and repeating = ?.

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.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

findAll

List<CalEvent> findAll()
                       throws SystemException
Finds all the cal events.

Returns:
the cal events
Throws:
SystemException - if a system exception occurred

findAll

List<CalEvent> findAll(int start,
                       int end)
                       throws SystemException
Finds a range of all the cal events.

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.

Parameters:
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
Returns:
the range of cal events
Throws:
SystemException - if a system exception occurred

findAll

List<CalEvent> findAll(int start,
                       int end,
                       OrderByComparator orderByComparator)
                       throws SystemException
Finds an ordered range of all the cal events.

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.

Parameters:
start - the lower bound of the range of cal events to return
end - the upper bound of the range of cal events to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of cal events
Throws:
SystemException - if a system exception occurred

removeByUuid

void removeByUuid(String uuid)
                  throws SystemException
Removes all the cal events where uuid = ? from the database.

Parameters:
uuid - the uuid to search with
Throws:
SystemException - if a system exception occurred

removeByUUID_G

void removeByUUID_G(String uuid,
                    long groupId)
                    throws SystemException,
                           NoSuchEventException
Removes the cal event where uuid = ? and groupId = ? from the database.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred
NoSuchEventException

removeByCompanyId

void removeByCompanyId(long companyId)
                       throws SystemException
Removes all the cal events where companyId = ? from the database.

Parameters:
companyId - the company id to search with
Throws:
SystemException - if a system exception occurred

removeByGroupId

void removeByGroupId(long groupId)
                     throws SystemException
Removes all the cal events where groupId = ? from the database.

Parameters:
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred

removeByNotRemindBy

void removeByNotRemindBy(int remindBy)
                         throws SystemException
Removes all the cal events where remindBy ≠ ? from the database.

Parameters:
remindBy - the remind by to search with
Throws:
SystemException - if a system exception occurred

removeByG_T

void removeByG_T(long groupId,
                 String type)
                 throws SystemException
Removes all the cal events where groupId = ? and type = ? from the database.

Parameters:
groupId - the group id to search with
type - the type to search with
Throws:
SystemException - if a system exception occurred

removeByG_R

void removeByG_R(long groupId,
                 boolean repeating)
                 throws SystemException
Removes all the cal events where groupId = ? and repeating = ? from the database.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
Throws:
SystemException - if a system exception occurred

removeAll

void removeAll()
               throws SystemException
Removes all the cal events from the database.

Throws:
SystemException - if a system exception occurred

countByUuid

int countByUuid(String uuid)
                throws SystemException
Counts all the cal events where uuid = ?.

Parameters:
uuid - the uuid to search with
Returns:
the number of matching cal events
Throws:
SystemException - if a system exception occurred

countByUUID_G

int countByUUID_G(String uuid,
                  long groupId)
                  throws SystemException
Counts all the cal events where uuid = ? and groupId = ?.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the number of matching cal events
Throws:
SystemException - if a system exception occurred

countByCompanyId

int countByCompanyId(long companyId)
                     throws SystemException
Counts all the cal events where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the number of matching cal events
Throws:
SystemException - if a system exception occurred

countByGroupId

int countByGroupId(long groupId)
                   throws SystemException
Counts all the cal events where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching cal events
Throws:
SystemException - if a system exception occurred

filterCountByGroupId

int filterCountByGroupId(long groupId)
                         throws SystemException
Filters by the user's permissions and counts all the cal events where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByNotRemindBy

int countByNotRemindBy(int remindBy)
                       throws SystemException
Counts all the cal events where remindBy ≠ ?.

Parameters:
remindBy - the remind by to search with
Returns:
the number of matching cal events
Throws:
SystemException - if a system exception occurred

countByG_T

int countByG_T(long groupId,
               String type)
               throws SystemException
Counts all the cal events where groupId = ? and type = ?.

Parameters:
groupId - the group id to search with
type - the type to search with
Returns:
the number of matching cal events
Throws:
SystemException - if a system exception occurred

filterCountByG_T

int filterCountByG_T(long groupId,
                     String type)
                     throws SystemException
Filters by the user's permissions and counts all the cal events where groupId = ? and type = ?.

Parameters:
groupId - the group id to search with
type - the type to search with
Returns:
the number of matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_R

int countByG_R(long groupId,
               boolean repeating)
               throws SystemException
Counts all the cal events where groupId = ? and repeating = ?.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
Returns:
the number of matching cal events
Throws:
SystemException - if a system exception occurred

filterCountByG_R

int filterCountByG_R(long groupId,
                     boolean repeating)
                     throws SystemException
Filters by the user's permissions and counts all the cal events where groupId = ? and repeating = ?.

Parameters:
groupId - the group id to search with
repeating - the repeating to search with
Returns:
the number of matching cal events that the user has permission to view
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the cal events.

Returns:
the number of cal events
Throws:
SystemException - if a system exception occurred

Liferay 6.0.5