com.liferay.calendar.service.persistence.CalendarResourcePersistence Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.calendar.service.persistence;
import com.liferay.calendar.exception.NoSuchResourceException;
import com.liferay.calendar.model.CalendarResource;
import com.liferay.portal.kernel.service.persistence.BasePersistence;
import com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence;
import org.osgi.annotation.versioning.ProviderType;
/**
* The persistence interface for the calendar resource service.
*
*
* Caching information and settings can be found in portal.properties
*
*
* @author Eduardo Lundgren
* @see CalendarResourceUtil
* @generated
*/
@ProviderType
public interface CalendarResourcePersistence
extends BasePersistence, CTPersistence {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this interface directly. Always use {@link CalendarResourceUtil} to access the calendar resource persistence. Modify service.xml
and rerun ServiceBuilder to regenerate this interface.
*/
/**
* Returns all the calendar resources where uuid = ?.
*
* @param uuid the uuid
* @return the matching calendar resources
*/
public java.util.List findByUuid(String uuid);
/**
* Returns a range of all the calendar resources where uuid = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources
*/
public java.util.List findByUuid(
String uuid, int start, int end);
/**
* Returns an ordered range of all the calendar resources where uuid = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources
*/
public java.util.List findByUuid(
String uuid, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the calendar resources where uuid = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @param useFinderCache whether to use the finder cache
* @return the ordered range of matching calendar resources
*/
public java.util.List findByUuid(
String uuid, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first calendar resource in the ordered set where uuid = ?.
*
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByUuid_First(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the first calendar resource in the ordered set where uuid = ?.
*
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByUuid_First(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last calendar resource in the ordered set where uuid = ?.
*
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByUuid_Last(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the last calendar resource in the ordered set where uuid = ?.
*
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByUuid_Last(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the calendar resources before and after the current calendar resource in the ordered set where uuid = ?.
*
* @param calendarResourceId the primary key of the current calendar resource
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource[] findByUuid_PrevAndNext(
long calendarResourceId, String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Removes all the calendar resources where uuid = ? from the database.
*
* @param uuid the uuid
*/
public void removeByUuid(String uuid);
/**
* Returns the number of calendar resources where uuid = ?.
*
* @param uuid the uuid
* @return the number of matching calendar resources
*/
public int countByUuid(String uuid);
/**
* Returns the calendar resource where uuid = ? and groupId = ? or throws a NoSuchResourceException
if it could not be found.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByUUID_G(String uuid, long groupId)
throws NoSuchResourceException;
/**
* Returns the calendar resource where uuid = ? and groupId = ? or returns null
if it could not be found. Uses the finder cache.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByUUID_G(String uuid, long groupId);
/**
* Returns the calendar resource where uuid = ? and groupId = ? or returns null
if it could not be found, optionally using the finder cache.
*
* @param uuid the uuid
* @param groupId the group ID
* @param useFinderCache whether to use the finder cache
* @return the matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByUUID_G(
String uuid, long groupId, boolean useFinderCache);
/**
* Removes the calendar resource where uuid = ? and groupId = ? from the database.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the calendar resource that was removed
*/
public CalendarResource removeByUUID_G(String uuid, long groupId)
throws NoSuchResourceException;
/**
* Returns the number of calendar resources where uuid = ? and groupId = ?.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the number of matching calendar resources
*/
public int countByUUID_G(String uuid, long groupId);
/**
* Returns all the calendar resources where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @return the matching calendar resources
*/
public java.util.List findByUuid_C(
String uuid, long companyId);
/**
* Returns a range of all the calendar resources where uuid = ? and companyId = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources
*/
public java.util.List findByUuid_C(
String uuid, long companyId, int start, int end);
/**
* Returns an ordered range of all the calendar resources where uuid = ? and companyId = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources
*/
public java.util.List findByUuid_C(
String uuid, long companyId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the calendar resources where uuid = ? and companyId = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @param useFinderCache whether to use the finder cache
* @return the ordered range of matching calendar resources
*/
public java.util.List findByUuid_C(
String uuid, long companyId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first calendar resource in the ordered set where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByUuid_C_First(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the first calendar resource in the ordered set where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByUuid_C_First(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last calendar resource in the ordered set where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByUuid_C_Last(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the last calendar resource in the ordered set where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByUuid_C_Last(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the calendar resources before and after the current calendar resource in the ordered set where uuid = ? and companyId = ?.
*
* @param calendarResourceId the primary key of the current calendar resource
* @param uuid the uuid
* @param companyId the company ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource[] findByUuid_C_PrevAndNext(
long calendarResourceId, String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Removes all the calendar resources where uuid = ? and companyId = ? from the database.
*
* @param uuid the uuid
* @param companyId the company ID
*/
public void removeByUuid_C(String uuid, long companyId);
/**
* Returns the number of calendar resources where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @return the number of matching calendar resources
*/
public int countByUuid_C(String uuid, long companyId);
/**
* Returns all the calendar resources where groupId = ?.
*
* @param groupId the group ID
* @return the matching calendar resources
*/
public java.util.List findByGroupId(long groupId);
/**
* Returns a range of all the calendar resources 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, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources
*/
public java.util.List findByGroupId(
long groupId, int start, int end);
/**
* Returns an ordered range of all the calendar resources 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, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources
*/
public java.util.List findByGroupId(
long groupId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the calendar resources 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, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @param useFinderCache whether to use the finder cache
* @return the ordered range of matching calendar resources
*/
public java.util.List findByGroupId(
long groupId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first calendar resource in the ordered set where groupId = ?.
*
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByGroupId_First(
long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the first calendar resource in the ordered set where groupId = ?.
*
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByGroupId_First(
long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last calendar resource in the ordered set where groupId = ?.
*
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByGroupId_Last(
long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the last calendar resource in the ordered set where groupId = ?.
*
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByGroupId_Last(
long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the calendar resources before and after the current calendar resource in the ordered set where groupId = ?.
*
* @param calendarResourceId the primary key of the current calendar resource
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource[] findByGroupId_PrevAndNext(
long calendarResourceId, long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns all the calendar resources that the user has permission to view where groupId = ?.
*
* @param groupId the group ID
* @return the matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByGroupId(long groupId);
/**
* Returns a range of all the calendar resources that the user has permission to view 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, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByGroupId(
long groupId, int start, int end);
/**
* Returns an ordered range of all the calendar resources that the user has permissions to view 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, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByGroupId(
long groupId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the calendar resources before and after the current calendar resource in the ordered set of calendar resources that the user has permission to view where groupId = ?.
*
* @param calendarResourceId the primary key of the current calendar resource
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource[] filterFindByGroupId_PrevAndNext(
long calendarResourceId, long groupId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Removes all the calendar resources where groupId = ? from the database.
*
* @param groupId the group ID
*/
public void removeByGroupId(long groupId);
/**
* Returns the number of calendar resources where groupId = ?.
*
* @param groupId the group ID
* @return the number of matching calendar resources
*/
public int countByGroupId(long groupId);
/**
* Returns the number of calendar resources that the user has permission to view where groupId = ?.
*
* @param groupId the group ID
* @return the number of matching calendar resources that the user has permission to view
*/
public int filterCountByGroupId(long groupId);
/**
* Returns all the calendar resources where active = ?.
*
* @param active the active
* @return the matching calendar resources
*/
public java.util.List findByActive(boolean active);
/**
* Returns a range of all the calendar resources where active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources
*/
public java.util.List findByActive(
boolean active, int start, int end);
/**
* Returns an ordered range of all the calendar resources where active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources
*/
public java.util.List findByActive(
boolean active, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the calendar resources where active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @param useFinderCache whether to use the finder cache
* @return the ordered range of matching calendar resources
*/
public java.util.List findByActive(
boolean active, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first calendar resource in the ordered set where active = ?.
*
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByActive_First(
boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the first calendar resource in the ordered set where active = ?.
*
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByActive_First(
boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last calendar resource in the ordered set where active = ?.
*
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByActive_Last(
boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the last calendar resource in the ordered set where active = ?.
*
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByActive_Last(
boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the calendar resources before and after the current calendar resource in the ordered set where active = ?.
*
* @param calendarResourceId the primary key of the current calendar resource
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource[] findByActive_PrevAndNext(
long calendarResourceId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Removes all the calendar resources where active = ? from the database.
*
* @param active the active
*/
public void removeByActive(boolean active);
/**
* Returns the number of calendar resources where active = ?.
*
* @param active the active
* @return the number of matching calendar resources
*/
public int countByActive(boolean active);
/**
* Returns all the calendar resources where groupId = ? and code = ?.
*
* @param groupId the group ID
* @param code the code
* @return the matching calendar resources
*/
public java.util.List findByG_C(
long groupId, String code);
/**
* Returns a range of all the calendar resources where groupId = ? and code = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param code the code
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources
*/
public java.util.List findByG_C(
long groupId, String code, int start, int end);
/**
* Returns an ordered range of all the calendar resources where groupId = ? and code = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param code the code
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources
*/
public java.util.List findByG_C(
long groupId, String code, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the calendar resources where groupId = ? and code = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param code the code
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @param useFinderCache whether to use the finder cache
* @return the ordered range of matching calendar resources
*/
public java.util.List findByG_C(
long groupId, String code, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first calendar resource in the ordered set where groupId = ? and code = ?.
*
* @param groupId the group ID
* @param code the code
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByG_C_First(
long groupId, String code,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the first calendar resource in the ordered set where groupId = ? and code = ?.
*
* @param groupId the group ID
* @param code the code
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByG_C_First(
long groupId, String code,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last calendar resource in the ordered set where groupId = ? and code = ?.
*
* @param groupId the group ID
* @param code the code
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByG_C_Last(
long groupId, String code,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the last calendar resource in the ordered set where groupId = ? and code = ?.
*
* @param groupId the group ID
* @param code the code
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByG_C_Last(
long groupId, String code,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the calendar resources before and after the current calendar resource in the ordered set where groupId = ? and code = ?.
*
* @param calendarResourceId the primary key of the current calendar resource
* @param groupId the group ID
* @param code the code
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource[] findByG_C_PrevAndNext(
long calendarResourceId, long groupId, String code,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns all the calendar resources that the user has permission to view where groupId = ? and code = ?.
*
* @param groupId the group ID
* @param code the code
* @return the matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByG_C(
long groupId, String code);
/**
* Returns a range of all the calendar resources that the user has permission to view where groupId = ? and code = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param code the code
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByG_C(
long groupId, String code, int start, int end);
/**
* Returns an ordered range of all the calendar resources that the user has permissions to view where groupId = ? and code = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param code the code
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByG_C(
long groupId, String code, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the calendar resources before and after the current calendar resource in the ordered set of calendar resources that the user has permission to view where groupId = ? and code = ?.
*
* @param calendarResourceId the primary key of the current calendar resource
* @param groupId the group ID
* @param code the code
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource[] filterFindByG_C_PrevAndNext(
long calendarResourceId, long groupId, String code,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns all the calendar resources that the user has permission to view where groupId = any ? and code = ?.
*
* @param groupIds the group IDs
* @param code the code
* @return the matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByG_C(
long[] groupIds, String code);
/**
* Returns a range of all the calendar resources that the user has permission to view where groupId = any ? and code = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupIds the group IDs
* @param code the code
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByG_C(
long[] groupIds, String code, int start, int end);
/**
* Returns an ordered range of all the calendar resources that the user has permission to view where groupId = any ? and code = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupIds the group IDs
* @param code the code
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByG_C(
long[] groupIds, String code, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns all the calendar resources where groupId = any ? and code = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupIds the group IDs
* @param code the code
* @return the matching calendar resources
*/
public java.util.List findByG_C(
long[] groupIds, String code);
/**
* Returns a range of all the calendar resources where groupId = any ? and code = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupIds the group IDs
* @param code the code
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources
*/
public java.util.List findByG_C(
long[] groupIds, String code, int start, int end);
/**
* Returns an ordered range of all the calendar resources where groupId = any ? and code = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupIds the group IDs
* @param code the code
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources
*/
public java.util.List findByG_C(
long[] groupIds, String code, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the calendar resources where groupId = ? and code = ?, optionally using the finder cache.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupIds the group IDs
* @param code the code
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @param useFinderCache whether to use the finder cache
* @return the ordered range of matching calendar resources
*/
public java.util.List findByG_C(
long[] groupIds, String code, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Removes all the calendar resources where groupId = ? and code = ? from the database.
*
* @param groupId the group ID
* @param code the code
*/
public void removeByG_C(long groupId, String code);
/**
* Returns the number of calendar resources where groupId = ? and code = ?.
*
* @param groupId the group ID
* @param code the code
* @return the number of matching calendar resources
*/
public int countByG_C(long groupId, String code);
/**
* Returns the number of calendar resources where groupId = any ? and code = ?.
*
* @param groupIds the group IDs
* @param code the code
* @return the number of matching calendar resources
*/
public int countByG_C(long[] groupIds, String code);
/**
* Returns the number of calendar resources that the user has permission to view where groupId = ? and code = ?.
*
* @param groupId the group ID
* @param code the code
* @return the number of matching calendar resources that the user has permission to view
*/
public int filterCountByG_C(long groupId, String code);
/**
* Returns the number of calendar resources that the user has permission to view where groupId = any ? and code = ?.
*
* @param groupIds the group IDs
* @param code the code
* @return the number of matching calendar resources that the user has permission to view
*/
public int filterCountByG_C(long[] groupIds, String code);
/**
* Returns all the calendar resources where groupId = ? and active = ?.
*
* @param groupId the group ID
* @param active the active
* @return the matching calendar resources
*/
public java.util.List findByG_A(
long groupId, boolean active);
/**
* Returns a range of all the calendar resources where groupId = ? and active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources
*/
public java.util.List findByG_A(
long groupId, boolean active, int start, int end);
/**
* Returns an ordered range of all the calendar resources where groupId = ? and active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources
*/
public java.util.List findByG_A(
long groupId, boolean active, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the calendar resources where groupId = ? and active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @param useFinderCache whether to use the finder cache
* @return the ordered range of matching calendar resources
*/
public java.util.List findByG_A(
long groupId, boolean active, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first calendar resource in the ordered set where groupId = ? and active = ?.
*
* @param groupId the group ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByG_A_First(
long groupId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the first calendar resource in the ordered set where groupId = ? and active = ?.
*
* @param groupId the group ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByG_A_First(
long groupId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last calendar resource in the ordered set where groupId = ? and active = ?.
*
* @param groupId the group ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByG_A_Last(
long groupId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the last calendar resource in the ordered set where groupId = ? and active = ?.
*
* @param groupId the group ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByG_A_Last(
long groupId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the calendar resources before and after the current calendar resource in the ordered set where groupId = ? and active = ?.
*
* @param calendarResourceId the primary key of the current calendar resource
* @param groupId the group ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource[] findByG_A_PrevAndNext(
long calendarResourceId, long groupId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns all the calendar resources that the user has permission to view where groupId = ? and active = ?.
*
* @param groupId the group ID
* @param active the active
* @return the matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByG_A(
long groupId, boolean active);
/**
* Returns a range of all the calendar resources that the user has permission to view where groupId = ? and active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByG_A(
long groupId, boolean active, int start, int end);
/**
* Returns an ordered range of all the calendar resources that the user has permissions to view where groupId = ? and active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param groupId the group ID
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources that the user has permission to view
*/
public java.util.List filterFindByG_A(
long groupId, boolean active, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the calendar resources before and after the current calendar resource in the ordered set of calendar resources that the user has permission to view where groupId = ? and active = ?.
*
* @param calendarResourceId the primary key of the current calendar resource
* @param groupId the group ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource[] filterFindByG_A_PrevAndNext(
long calendarResourceId, long groupId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Removes all the calendar resources where groupId = ? and active = ? from the database.
*
* @param groupId the group ID
* @param active the active
*/
public void removeByG_A(long groupId, boolean active);
/**
* Returns the number of calendar resources where groupId = ? and active = ?.
*
* @param groupId the group ID
* @param active the active
* @return the number of matching calendar resources
*/
public int countByG_A(long groupId, boolean active);
/**
* Returns the number of calendar resources that the user has permission to view where groupId = ? and active = ?.
*
* @param groupId the group ID
* @param active the active
* @return the number of matching calendar resources that the user has permission to view
*/
public int filterCountByG_A(long groupId, boolean active);
/**
* Returns the calendar resource where classNameId = ? and classPK = ? or throws a NoSuchResourceException
if it could not be found.
*
* @param classNameId the class name ID
* @param classPK the class pk
* @return the matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByC_C(long classNameId, long classPK)
throws NoSuchResourceException;
/**
* Returns the calendar resource where classNameId = ? and classPK = ? or returns null
if it could not be found. Uses the finder cache.
*
* @param classNameId the class name ID
* @param classPK the class pk
* @return the matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByC_C(long classNameId, long classPK);
/**
* Returns the calendar resource where classNameId = ? and classPK = ? or returns null
if it could not be found, optionally using the finder cache.
*
* @param classNameId the class name ID
* @param classPK the class pk
* @param useFinderCache whether to use the finder cache
* @return the matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByC_C(
long classNameId, long classPK, boolean useFinderCache);
/**
* Removes the calendar resource where classNameId = ? and classPK = ? from the database.
*
* @param classNameId the class name ID
* @param classPK the class pk
* @return the calendar resource that was removed
*/
public CalendarResource removeByC_C(long classNameId, long classPK)
throws NoSuchResourceException;
/**
* Returns the number of calendar resources where classNameId = ? and classPK = ?.
*
* @param classNameId the class name ID
* @param classPK the class pk
* @return the number of matching calendar resources
*/
public int countByC_C(long classNameId, long classPK);
/**
* Returns all the calendar resources where companyId = ? and code LIKE ? and active = ?.
*
* @param companyId the company ID
* @param code the code
* @param active the active
* @return the matching calendar resources
*/
public java.util.List findByC_LikeC_A(
long companyId, String code, boolean active);
/**
* Returns a range of all the calendar resources where companyId = ? and code LIKE ? and active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param companyId the company ID
* @param code the code
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of matching calendar resources
*/
public java.util.List findByC_LikeC_A(
long companyId, String code, boolean active, int start, int end);
/**
* Returns an ordered range of all the calendar resources where companyId = ? and code LIKE ? and active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param companyId the company ID
* @param code the code
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching calendar resources
*/
public java.util.List findByC_LikeC_A(
long companyId, String code, boolean active, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the calendar resources where companyId = ? and code LIKE ? and active = ?.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param companyId the company ID
* @param code the code
* @param active the active
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @param useFinderCache whether to use the finder cache
* @return the ordered range of matching calendar resources
*/
public java.util.List findByC_LikeC_A(
long companyId, String code, boolean active, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first calendar resource in the ordered set where companyId = ? and code LIKE ? and active = ?.
*
* @param companyId the company ID
* @param code the code
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByC_LikeC_A_First(
long companyId, String code, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the first calendar resource in the ordered set where companyId = ? and code LIKE ? and active = ?.
*
* @param companyId the company ID
* @param code the code
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByC_LikeC_A_First(
long companyId, String code, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last calendar resource in the ordered set where companyId = ? and code LIKE ? and active = ?.
*
* @param companyId the company ID
* @param code the code
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource
* @throws NoSuchResourceException if a matching calendar resource could not be found
*/
public CalendarResource findByC_LikeC_A_Last(
long companyId, String code, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Returns the last calendar resource in the ordered set where companyId = ? and code LIKE ? and active = ?.
*
* @param companyId the company ID
* @param code the code
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching calendar resource, or null
if a matching calendar resource could not be found
*/
public CalendarResource fetchByC_LikeC_A_Last(
long companyId, String code, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the calendar resources before and after the current calendar resource in the ordered set where companyId = ? and code LIKE ? and active = ?.
*
* @param calendarResourceId the primary key of the current calendar resource
* @param companyId the company ID
* @param code the code
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource[] findByC_LikeC_A_PrevAndNext(
long calendarResourceId, long companyId, String code,
boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchResourceException;
/**
* Removes all the calendar resources where companyId = ? and code LIKE ? and active = ? from the database.
*
* @param companyId the company ID
* @param code the code
* @param active the active
*/
public void removeByC_LikeC_A(long companyId, String code, boolean active);
/**
* Returns the number of calendar resources where companyId = ? and code LIKE ? and active = ?.
*
* @param companyId the company ID
* @param code the code
* @param active the active
* @return the number of matching calendar resources
*/
public int countByC_LikeC_A(long companyId, String code, boolean active);
/**
* Caches the calendar resource in the entity cache if it is enabled.
*
* @param calendarResource the calendar resource
*/
public void cacheResult(CalendarResource calendarResource);
/**
* Caches the calendar resources in the entity cache if it is enabled.
*
* @param calendarResources the calendar resources
*/
public void cacheResult(java.util.List calendarResources);
/**
* Creates a new calendar resource with the primary key. Does not add the calendar resource to the database.
*
* @param calendarResourceId the primary key for the new calendar resource
* @return the new calendar resource
*/
public CalendarResource create(long calendarResourceId);
/**
* Removes the calendar resource with the primary key from the database. Also notifies the appropriate model listeners.
*
* @param calendarResourceId the primary key of the calendar resource
* @return the calendar resource that was removed
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource remove(long calendarResourceId)
throws NoSuchResourceException;
public CalendarResource updateImpl(CalendarResource calendarResource);
/**
* Returns the calendar resource with the primary key or throws a NoSuchResourceException
if it could not be found.
*
* @param calendarResourceId the primary key of the calendar resource
* @return the calendar resource
* @throws NoSuchResourceException if a calendar resource with the primary key could not be found
*/
public CalendarResource findByPrimaryKey(long calendarResourceId)
throws NoSuchResourceException;
/**
* Returns the calendar resource with the primary key or returns null
if it could not be found.
*
* @param calendarResourceId the primary key of the calendar resource
* @return the calendar resource, or null
if a calendar resource with the primary key could not be found
*/
public CalendarResource fetchByPrimaryKey(long calendarResourceId);
/**
* Returns all the calendar resources.
*
* @return the calendar resources
*/
public java.util.List findAll();
/**
* Returns a range of all the calendar resources.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @return the range of calendar resources
*/
public java.util.List findAll(int start, int end);
/**
* Returns an ordered range of all the calendar resources.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of calendar resources
*/
public java.util.List findAll(
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the calendar resources.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from CalendarResourceModelImpl
.
*
*
* @param start the lower bound of the range of calendar resources
* @param end the upper bound of the range of calendar resources (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @param useFinderCache whether to use the finder cache
* @return the ordered range of calendar resources
*/
public java.util.List findAll(
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Removes all the calendar resources from the database.
*/
public void removeAll();
/**
* Returns the number of calendar resources.
*
* @return the number of calendar resources
*/
public int countAll();
}