com.liferay.object.service.persistence.ObjectValidationRulePersistence 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.object.service.persistence;
import com.liferay.object.exception.NoSuchObjectValidationRuleException;
import com.liferay.object.model.ObjectValidationRule;
import com.liferay.portal.kernel.service.persistence.BasePersistence;
import org.osgi.annotation.versioning.ProviderType;
/**
* The persistence interface for the object validation rule service.
*
*
* Caching information and settings can be found in portal.properties
*
*
* @author Marco Leo
* @see ObjectValidationRuleUtil
* @generated
*/
@ProviderType
public interface ObjectValidationRulePersistence
extends BasePersistence {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this interface directly. Always use {@link ObjectValidationRuleUtil} to access the object validation rule persistence. Modify service.xml
and rerun ServiceBuilder to regenerate this interface.
*/
/**
* Returns all the object validation rules where uuid = ?.
*
* @param uuid the uuid
* @return the matching object validation rules
*/
public java.util.List findByUuid(String uuid);
/**
* Returns a range of all the object validation rules 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 ObjectValidationRuleModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @return the range of matching object validation rules
*/
public java.util.List findByUuid(
String uuid, int start, int end);
/**
* Returns an ordered range of all the object validation rules 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 ObjectValidationRuleModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching object validation rules
*/
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 object validation rules 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 ObjectValidationRuleModelImpl
.
*
*
* @param uuid the uuid
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (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 object validation rules
*/
public java.util.List findByUuid(
String uuid, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first object validation rule 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 object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByUuid_First(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the first object validation rule 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 object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByUuid_First(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last object validation rule 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 object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByUuid_Last(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the last object validation rule 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 object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByUuid_Last(
String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the object validation rules before and after the current object validation rule in the ordered set where uuid = ?.
*
* @param objectValidationRuleId the primary key of the current object validation rule
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next object validation rule
* @throws NoSuchObjectValidationRuleException if a object validation rule with the primary key could not be found
*/
public ObjectValidationRule[] findByUuid_PrevAndNext(
long objectValidationRuleId, String uuid,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Removes all the object validation rules where uuid = ? from the database.
*
* @param uuid the uuid
*/
public void removeByUuid(String uuid);
/**
* Returns the number of object validation rules where uuid = ?.
*
* @param uuid the uuid
* @return the number of matching object validation rules
*/
public int countByUuid(String uuid);
/**
* Returns all the object validation rules where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @return the matching object validation rules
*/
public java.util.List findByUuid_C(
String uuid, long companyId);
/**
* Returns a range of all the object validation rules 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 ObjectValidationRuleModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @return the range of matching object validation rules
*/
public java.util.List findByUuid_C(
String uuid, long companyId, int start, int end);
/**
* Returns an ordered range of all the object validation rules 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 ObjectValidationRuleModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching object validation rules
*/
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 object validation rules 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 ObjectValidationRuleModelImpl
.
*
*
* @param uuid the uuid
* @param companyId the company ID
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (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 object validation rules
*/
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 object validation rule 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 object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByUuid_C_First(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the first object validation rule 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 object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByUuid_C_First(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last object validation rule 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 object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByUuid_C_Last(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the last object validation rule 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 object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByUuid_C_Last(
String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the object validation rules before and after the current object validation rule in the ordered set where uuid = ? and companyId = ?.
*
* @param objectValidationRuleId the primary key of the current object validation rule
* @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 object validation rule
* @throws NoSuchObjectValidationRuleException if a object validation rule with the primary key could not be found
*/
public ObjectValidationRule[] findByUuid_C_PrevAndNext(
long objectValidationRuleId, String uuid, long companyId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Removes all the object validation rules 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 object validation rules where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @return the number of matching object validation rules
*/
public int countByUuid_C(String uuid, long companyId);
/**
* Returns all the object validation rules where objectDefinitionId = ?.
*
* @param objectDefinitionId the object definition ID
* @return the matching object validation rules
*/
public java.util.List findByObjectDefinitionId(
long objectDefinitionId);
/**
* Returns a range of all the object validation rules where objectDefinitionId = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @return the range of matching object validation rules
*/
public java.util.List findByObjectDefinitionId(
long objectDefinitionId, int start, int end);
/**
* Returns an ordered range of all the object validation rules where objectDefinitionId = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching object validation rules
*/
public java.util.List findByObjectDefinitionId(
long objectDefinitionId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the object validation rules where objectDefinitionId = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (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 object validation rules
*/
public java.util.List findByObjectDefinitionId(
long objectDefinitionId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first object validation rule in the ordered set where objectDefinitionId = ?.
*
* @param objectDefinitionId the object definition ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByObjectDefinitionId_First(
long objectDefinitionId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the first object validation rule in the ordered set where objectDefinitionId = ?.
*
* @param objectDefinitionId the object definition ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByObjectDefinitionId_First(
long objectDefinitionId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last object validation rule in the ordered set where objectDefinitionId = ?.
*
* @param objectDefinitionId the object definition ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByObjectDefinitionId_Last(
long objectDefinitionId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the last object validation rule in the ordered set where objectDefinitionId = ?.
*
* @param objectDefinitionId the object definition ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByObjectDefinitionId_Last(
long objectDefinitionId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the object validation rules before and after the current object validation rule in the ordered set where objectDefinitionId = ?.
*
* @param objectValidationRuleId the primary key of the current object validation rule
* @param objectDefinitionId the object definition ID
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next object validation rule
* @throws NoSuchObjectValidationRuleException if a object validation rule with the primary key could not be found
*/
public ObjectValidationRule[] findByObjectDefinitionId_PrevAndNext(
long objectValidationRuleId, long objectDefinitionId,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Removes all the object validation rules where objectDefinitionId = ? from the database.
*
* @param objectDefinitionId the object definition ID
*/
public void removeByObjectDefinitionId(long objectDefinitionId);
/**
* Returns the number of object validation rules where objectDefinitionId = ?.
*
* @param objectDefinitionId the object definition ID
* @return the number of matching object validation rules
*/
public int countByObjectDefinitionId(long objectDefinitionId);
/**
* Returns all the object validation rules where objectDefinitionId = ? and active = ?.
*
* @param objectDefinitionId the object definition ID
* @param active the active
* @return the matching object validation rules
*/
public java.util.List findByODI_A(
long objectDefinitionId, boolean active);
/**
* Returns a range of all the object validation rules where objectDefinitionId = ? 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param active the active
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @return the range of matching object validation rules
*/
public java.util.List findByODI_A(
long objectDefinitionId, boolean active, int start, int end);
/**
* Returns an ordered range of all the object validation rules where objectDefinitionId = ? 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param active the active
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching object validation rules
*/
public java.util.List findByODI_A(
long objectDefinitionId, boolean active, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the object validation rules where objectDefinitionId = ? 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param active the active
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (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 object validation rules
*/
public java.util.List findByODI_A(
long objectDefinitionId, boolean active, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first object validation rule in the ordered set where objectDefinitionId = ? and active = ?.
*
* @param objectDefinitionId the object definition ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByODI_A_First(
long objectDefinitionId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the first object validation rule in the ordered set where objectDefinitionId = ? and active = ?.
*
* @param objectDefinitionId the object definition ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByODI_A_First(
long objectDefinitionId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last object validation rule in the ordered set where objectDefinitionId = ? and active = ?.
*
* @param objectDefinitionId the object definition ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByODI_A_Last(
long objectDefinitionId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the last object validation rule in the ordered set where objectDefinitionId = ? and active = ?.
*
* @param objectDefinitionId the object definition ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByODI_A_Last(
long objectDefinitionId, boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the object validation rules before and after the current object validation rule in the ordered set where objectDefinitionId = ? and active = ?.
*
* @param objectValidationRuleId the primary key of the current object validation rule
* @param objectDefinitionId the object definition ID
* @param active the active
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next object validation rule
* @throws NoSuchObjectValidationRuleException if a object validation rule with the primary key could not be found
*/
public ObjectValidationRule[] findByODI_A_PrevAndNext(
long objectValidationRuleId, long objectDefinitionId,
boolean active,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Removes all the object validation rules where objectDefinitionId = ? and active = ? from the database.
*
* @param objectDefinitionId the object definition ID
* @param active the active
*/
public void removeByODI_A(long objectDefinitionId, boolean active);
/**
* Returns the number of object validation rules where objectDefinitionId = ? and active = ?.
*
* @param objectDefinitionId the object definition ID
* @param active the active
* @return the number of matching object validation rules
*/
public int countByODI_A(long objectDefinitionId, boolean active);
/**
* Returns all the object validation rules where objectDefinitionId = ? and engine = ?.
*
* @param objectDefinitionId the object definition ID
* @param engine the engine
* @return the matching object validation rules
*/
public java.util.List findByODI_E(
long objectDefinitionId, String engine);
/**
* Returns a range of all the object validation rules where objectDefinitionId = ? and engine = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param engine the engine
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @return the range of matching object validation rules
*/
public java.util.List findByODI_E(
long objectDefinitionId, String engine, int start, int end);
/**
* Returns an ordered range of all the object validation rules where objectDefinitionId = ? and engine = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param engine the engine
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching object validation rules
*/
public java.util.List findByODI_E(
long objectDefinitionId, String engine, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the object validation rules where objectDefinitionId = ? and engine = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param engine the engine
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (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 object validation rules
*/
public java.util.List findByODI_E(
long objectDefinitionId, String engine, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first object validation rule in the ordered set where objectDefinitionId = ? and engine = ?.
*
* @param objectDefinitionId the object definition ID
* @param engine the engine
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByODI_E_First(
long objectDefinitionId, String engine,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the first object validation rule in the ordered set where objectDefinitionId = ? and engine = ?.
*
* @param objectDefinitionId the object definition ID
* @param engine the engine
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByODI_E_First(
long objectDefinitionId, String engine,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last object validation rule in the ordered set where objectDefinitionId = ? and engine = ?.
*
* @param objectDefinitionId the object definition ID
* @param engine the engine
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByODI_E_Last(
long objectDefinitionId, String engine,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the last object validation rule in the ordered set where objectDefinitionId = ? and engine = ?.
*
* @param objectDefinitionId the object definition ID
* @param engine the engine
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByODI_E_Last(
long objectDefinitionId, String engine,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the object validation rules before and after the current object validation rule in the ordered set where objectDefinitionId = ? and engine = ?.
*
* @param objectValidationRuleId the primary key of the current object validation rule
* @param objectDefinitionId the object definition ID
* @param engine the engine
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next object validation rule
* @throws NoSuchObjectValidationRuleException if a object validation rule with the primary key could not be found
*/
public ObjectValidationRule[] findByODI_E_PrevAndNext(
long objectValidationRuleId, long objectDefinitionId, String engine,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Removes all the object validation rules where objectDefinitionId = ? and engine = ? from the database.
*
* @param objectDefinitionId the object definition ID
* @param engine the engine
*/
public void removeByODI_E(long objectDefinitionId, String engine);
/**
* Returns the number of object validation rules where objectDefinitionId = ? and engine = ?.
*
* @param objectDefinitionId the object definition ID
* @param engine the engine
* @return the number of matching object validation rules
*/
public int countByODI_E(long objectDefinitionId, String engine);
/**
* Returns all the object validation rules where objectDefinitionId = ? and outputType = ?.
*
* @param objectDefinitionId the object definition ID
* @param outputType the output type
* @return the matching object validation rules
*/
public java.util.List findByODI_O(
long objectDefinitionId, String outputType);
/**
* Returns a range of all the object validation rules where objectDefinitionId = ? and outputType = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param outputType the output type
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @return the range of matching object validation rules
*/
public java.util.List findByODI_O(
long objectDefinitionId, String outputType, int start, int end);
/**
* Returns an ordered range of all the object validation rules where objectDefinitionId = ? and outputType = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param outputType the output type
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching object validation rules
*/
public java.util.List findByODI_O(
long objectDefinitionId, String outputType, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the object validation rules where objectDefinitionId = ? and outputType = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param objectDefinitionId the object definition ID
* @param outputType the output type
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (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 object validation rules
*/
public java.util.List findByODI_O(
long objectDefinitionId, String outputType, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first object validation rule in the ordered set where objectDefinitionId = ? and outputType = ?.
*
* @param objectDefinitionId the object definition ID
* @param outputType the output type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByODI_O_First(
long objectDefinitionId, String outputType,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the first object validation rule in the ordered set where objectDefinitionId = ? and outputType = ?.
*
* @param objectDefinitionId the object definition ID
* @param outputType the output type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByODI_O_First(
long objectDefinitionId, String outputType,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last object validation rule in the ordered set where objectDefinitionId = ? and outputType = ?.
*
* @param objectDefinitionId the object definition ID
* @param outputType the output type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByODI_O_Last(
long objectDefinitionId, String outputType,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the last object validation rule in the ordered set where objectDefinitionId = ? and outputType = ?.
*
* @param objectDefinitionId the object definition ID
* @param outputType the output type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByODI_O_Last(
long objectDefinitionId, String outputType,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the object validation rules before and after the current object validation rule in the ordered set where objectDefinitionId = ? and outputType = ?.
*
* @param objectValidationRuleId the primary key of the current object validation rule
* @param objectDefinitionId the object definition ID
* @param outputType the output type
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next object validation rule
* @throws NoSuchObjectValidationRuleException if a object validation rule with the primary key could not be found
*/
public ObjectValidationRule[] findByODI_O_PrevAndNext(
long objectValidationRuleId, long objectDefinitionId,
String outputType,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Removes all the object validation rules where objectDefinitionId = ? and outputType = ? from the database.
*
* @param objectDefinitionId the object definition ID
* @param outputType the output type
*/
public void removeByODI_O(long objectDefinitionId, String outputType);
/**
* Returns the number of object validation rules where objectDefinitionId = ? and outputType = ?.
*
* @param objectDefinitionId the object definition ID
* @param outputType the output type
* @return the number of matching object validation rules
*/
public int countByODI_O(long objectDefinitionId, String outputType);
/**
* Returns all the object validation rules where active = ? and engine = ?.
*
* @param active the active
* @param engine the engine
* @return the matching object validation rules
*/
public java.util.List findByA_E(
boolean active, String engine);
/**
* Returns a range of all the object validation rules where active = ? and engine = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param active the active
* @param engine the engine
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @return the range of matching object validation rules
*/
public java.util.List findByA_E(
boolean active, String engine, int start, int end);
/**
* Returns an ordered range of all the object validation rules where active = ? and engine = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param active the active
* @param engine the engine
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching object validation rules
*/
public java.util.List findByA_E(
boolean active, String engine, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the object validation rules where active = ? and engine = ?.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param active the active
* @param engine the engine
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (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 object validation rules
*/
public java.util.List findByA_E(
boolean active, String engine, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Returns the first object validation rule in the ordered set where active = ? and engine = ?.
*
* @param active the active
* @param engine the engine
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByA_E_First(
boolean active, String engine,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the first object validation rule in the ordered set where active = ? and engine = ?.
*
* @param active the active
* @param engine the engine
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the first matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByA_E_First(
boolean active, String engine,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the last object validation rule in the ordered set where active = ? and engine = ?.
*
* @param active the active
* @param engine the engine
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByA_E_Last(
boolean active, String engine,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Returns the last object validation rule in the ordered set where active = ? and engine = ?.
*
* @param active the active
* @param engine the engine
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the last matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByA_E_Last(
boolean active, String engine,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns the object validation rules before and after the current object validation rule in the ordered set where active = ? and engine = ?.
*
* @param objectValidationRuleId the primary key of the current object validation rule
* @param active the active
* @param engine the engine
* @param orderByComparator the comparator to order the set by (optionally null
)
* @return the previous, current, and next object validation rule
* @throws NoSuchObjectValidationRuleException if a object validation rule with the primary key could not be found
*/
public ObjectValidationRule[] findByA_E_PrevAndNext(
long objectValidationRuleId, boolean active, String engine,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator)
throws NoSuchObjectValidationRuleException;
/**
* Removes all the object validation rules where active = ? and engine = ? from the database.
*
* @param active the active
* @param engine the engine
*/
public void removeByA_E(boolean active, String engine);
/**
* Returns the number of object validation rules where active = ? and engine = ?.
*
* @param active the active
* @param engine the engine
* @return the number of matching object validation rules
*/
public int countByA_E(boolean active, String engine);
/**
* Returns the object validation rule where externalReferenceCode = ? and companyId = ? and objectDefinitionId = ? or throws a NoSuchObjectValidationRuleException
if it could not be found.
*
* @param externalReferenceCode the external reference code
* @param companyId the company ID
* @param objectDefinitionId the object definition ID
* @return the matching object validation rule
* @throws NoSuchObjectValidationRuleException if a matching object validation rule could not be found
*/
public ObjectValidationRule findByERC_C_ODI(
String externalReferenceCode, long companyId,
long objectDefinitionId)
throws NoSuchObjectValidationRuleException;
/**
* Returns the object validation rule where externalReferenceCode = ? and companyId = ? and objectDefinitionId = ? or returns null
if it could not be found. Uses the finder cache.
*
* @param externalReferenceCode the external reference code
* @param companyId the company ID
* @param objectDefinitionId the object definition ID
* @return the matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByERC_C_ODI(
String externalReferenceCode, long companyId, long objectDefinitionId);
/**
* Returns the object validation rule where externalReferenceCode = ? and companyId = ? and objectDefinitionId = ? or returns null
if it could not be found, optionally using the finder cache.
*
* @param externalReferenceCode the external reference code
* @param companyId the company ID
* @param objectDefinitionId the object definition ID
* @param useFinderCache whether to use the finder cache
* @return the matching object validation rule, or null
if a matching object validation rule could not be found
*/
public ObjectValidationRule fetchByERC_C_ODI(
String externalReferenceCode, long companyId, long objectDefinitionId,
boolean useFinderCache);
/**
* Removes the object validation rule where externalReferenceCode = ? and companyId = ? and objectDefinitionId = ? from the database.
*
* @param externalReferenceCode the external reference code
* @param companyId the company ID
* @param objectDefinitionId the object definition ID
* @return the object validation rule that was removed
*/
public ObjectValidationRule removeByERC_C_ODI(
String externalReferenceCode, long companyId,
long objectDefinitionId)
throws NoSuchObjectValidationRuleException;
/**
* Returns the number of object validation rules where externalReferenceCode = ? and companyId = ? and objectDefinitionId = ?.
*
* @param externalReferenceCode the external reference code
* @param companyId the company ID
* @param objectDefinitionId the object definition ID
* @return the number of matching object validation rules
*/
public int countByERC_C_ODI(
String externalReferenceCode, long companyId, long objectDefinitionId);
/**
* Caches the object validation rule in the entity cache if it is enabled.
*
* @param objectValidationRule the object validation rule
*/
public void cacheResult(ObjectValidationRule objectValidationRule);
/**
* Caches the object validation rules in the entity cache if it is enabled.
*
* @param objectValidationRules the object validation rules
*/
public void cacheResult(
java.util.List objectValidationRules);
/**
* Creates a new object validation rule with the primary key. Does not add the object validation rule to the database.
*
* @param objectValidationRuleId the primary key for the new object validation rule
* @return the new object validation rule
*/
public ObjectValidationRule create(long objectValidationRuleId);
/**
* Removes the object validation rule with the primary key from the database. Also notifies the appropriate model listeners.
*
* @param objectValidationRuleId the primary key of the object validation rule
* @return the object validation rule that was removed
* @throws NoSuchObjectValidationRuleException if a object validation rule with the primary key could not be found
*/
public ObjectValidationRule remove(long objectValidationRuleId)
throws NoSuchObjectValidationRuleException;
public ObjectValidationRule updateImpl(
ObjectValidationRule objectValidationRule);
/**
* Returns the object validation rule with the primary key or throws a NoSuchObjectValidationRuleException
if it could not be found.
*
* @param objectValidationRuleId the primary key of the object validation rule
* @return the object validation rule
* @throws NoSuchObjectValidationRuleException if a object validation rule with the primary key could not be found
*/
public ObjectValidationRule findByPrimaryKey(long objectValidationRuleId)
throws NoSuchObjectValidationRuleException;
/**
* Returns the object validation rule with the primary key or returns null
if it could not be found.
*
* @param objectValidationRuleId the primary key of the object validation rule
* @return the object validation rule, or null
if a object validation rule with the primary key could not be found
*/
public ObjectValidationRule fetchByPrimaryKey(long objectValidationRuleId);
/**
* Returns all the object validation rules.
*
* @return the object validation rules
*/
public java.util.List findAll();
/**
* Returns a range of all the object validation rules.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @return the range of object validation rules
*/
public java.util.List findAll(int start, int end);
/**
* Returns an ordered range of all the object validation rules.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of object validation rules
*/
public java.util.List findAll(
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator);
/**
* Returns an ordered range of all the object validation rules.
*
*
* 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 ObjectValidationRuleModelImpl
.
*
*
* @param start the lower bound of the range of object validation rules
* @param end the upper bound of the range of object validation rules (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 object validation rules
*/
public java.util.List findAll(
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator,
boolean useFinderCache);
/**
* Removes all the object validation rules from the database.
*/
public void removeAll();
/**
* Returns the number of object validation rules.
*
* @return the number of object validation rules
*/
public int countAll();
}