001 /** 002 * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved. 003 * 004 * This library is free software; you can redistribute it and/or modify it under 005 * the terms of the GNU Lesser General Public License as published by the Free 006 * Software Foundation; either version 2.1 of the License, or (at your option) 007 * any later version. 008 * 009 * This library is distributed in the hope that it will be useful, but WITHOUT 010 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 011 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 012 * details. 013 */ 014 015 package com.liferay.portlet.dynamicdatalists.service.persistence; 016 017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil; 018 import com.liferay.portal.kernel.dao.orm.DynamicQuery; 019 import com.liferay.portal.kernel.exception.SystemException; 020 import com.liferay.portal.kernel.util.OrderByComparator; 021 import com.liferay.portal.kernel.util.ReferenceRegistry; 022 import com.liferay.portal.service.ServiceContext; 023 024 import com.liferay.portlet.dynamicdatalists.model.DDLRecordSet; 025 026 import java.util.List; 027 028 /** 029 * The persistence utility for the d d l record set service. This utility wraps {@link DDLRecordSetPersistenceImpl} and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class. 030 * 031 * <p> 032 * Caching information and settings can be found in <code>portal.properties</code> 033 * </p> 034 * 035 * @author Brian Wing Shun Chan 036 * @see DDLRecordSetPersistence 037 * @see DDLRecordSetPersistenceImpl 038 * @generated 039 */ 040 public class DDLRecordSetUtil { 041 /* 042 * NOTE FOR DEVELOPERS: 043 * 044 * Never modify this class directly. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this class. 045 */ 046 047 /** 048 * @see com.liferay.portal.service.persistence.BasePersistence#clearCache() 049 */ 050 public static void clearCache() { 051 getPersistence().clearCache(); 052 } 053 054 /** 055 * @see com.liferay.portal.service.persistence.BasePersistence#clearCache(com.liferay.portal.model.BaseModel) 056 */ 057 public static void clearCache(DDLRecordSet ddlRecordSet) { 058 getPersistence().clearCache(ddlRecordSet); 059 } 060 061 /** 062 * @see com.liferay.portal.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery) 063 */ 064 public long countWithDynamicQuery(DynamicQuery dynamicQuery) 065 throws SystemException { 066 return getPersistence().countWithDynamicQuery(dynamicQuery); 067 } 068 069 /** 070 * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery) 071 */ 072 public static List<DDLRecordSet> findWithDynamicQuery( 073 DynamicQuery dynamicQuery) throws SystemException { 074 return getPersistence().findWithDynamicQuery(dynamicQuery); 075 } 076 077 /** 078 * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int) 079 */ 080 public static List<DDLRecordSet> findWithDynamicQuery( 081 DynamicQuery dynamicQuery, int start, int end) 082 throws SystemException { 083 return getPersistence().findWithDynamicQuery(dynamicQuery, start, end); 084 } 085 086 /** 087 * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator) 088 */ 089 public static List<DDLRecordSet> findWithDynamicQuery( 090 DynamicQuery dynamicQuery, int start, int end, 091 OrderByComparator orderByComparator) throws SystemException { 092 return getPersistence() 093 .findWithDynamicQuery(dynamicQuery, start, end, 094 orderByComparator); 095 } 096 097 /** 098 * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel) 099 */ 100 public static DDLRecordSet update(DDLRecordSet ddlRecordSet) 101 throws SystemException { 102 return getPersistence().update(ddlRecordSet); 103 } 104 105 /** 106 * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, ServiceContext) 107 */ 108 public static DDLRecordSet update(DDLRecordSet ddlRecordSet, 109 ServiceContext serviceContext) throws SystemException { 110 return getPersistence().update(ddlRecordSet, serviceContext); 111 } 112 113 /** 114 * Caches the d d l record set in the entity cache if it is enabled. 115 * 116 * @param ddlRecordSet the d d l record set 117 */ 118 public static void cacheResult( 119 com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet) { 120 getPersistence().cacheResult(ddlRecordSet); 121 } 122 123 /** 124 * Caches the d d l record sets in the entity cache if it is enabled. 125 * 126 * @param ddlRecordSets the d d l record sets 127 */ 128 public static void cacheResult( 129 java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> ddlRecordSets) { 130 getPersistence().cacheResult(ddlRecordSets); 131 } 132 133 /** 134 * Creates a new d d l record set with the primary key. Does not add the d d l record set to the database. 135 * 136 * @param recordSetId the primary key for the new d d l record set 137 * @return the new d d l record set 138 */ 139 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet create( 140 long recordSetId) { 141 return getPersistence().create(recordSetId); 142 } 143 144 /** 145 * Removes the d d l record set with the primary key from the database. Also notifies the appropriate model listeners. 146 * 147 * @param recordSetId the primary key of the d d l record set 148 * @return the d d l record set that was removed 149 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found 150 * @throws SystemException if a system exception occurred 151 */ 152 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet remove( 153 long recordSetId) 154 throws com.liferay.portal.kernel.exception.SystemException, 155 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 156 return getPersistence().remove(recordSetId); 157 } 158 159 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateImpl( 160 com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet) 161 throws com.liferay.portal.kernel.exception.SystemException { 162 return getPersistence().updateImpl(ddlRecordSet); 163 } 164 165 /** 166 * Returns the d d l record set with the primary key or throws a {@link com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException} if it could not be found. 167 * 168 * @param recordSetId the primary key of the d d l record set 169 * @return the d d l record set 170 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found 171 * @throws SystemException if a system exception occurred 172 */ 173 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByPrimaryKey( 174 long recordSetId) 175 throws com.liferay.portal.kernel.exception.SystemException, 176 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 177 return getPersistence().findByPrimaryKey(recordSetId); 178 } 179 180 /** 181 * Returns the d d l record set with the primary key or returns <code>null</code> if it could not be found. 182 * 183 * @param recordSetId the primary key of the d d l record set 184 * @return the d d l record set, or <code>null</code> if a d d l record set with the primary key could not be found 185 * @throws SystemException if a system exception occurred 186 */ 187 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByPrimaryKey( 188 long recordSetId) 189 throws com.liferay.portal.kernel.exception.SystemException { 190 return getPersistence().fetchByPrimaryKey(recordSetId); 191 } 192 193 /** 194 * Returns all the d d l record sets where uuid = ?. 195 * 196 * @param uuid the uuid 197 * @return the matching d d l record sets 198 * @throws SystemException if a system exception occurred 199 */ 200 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByUuid( 201 java.lang.String uuid) 202 throws com.liferay.portal.kernel.exception.SystemException { 203 return getPersistence().findByUuid(uuid); 204 } 205 206 /** 207 * Returns a range of all the d d l record sets where uuid = ?. 208 * 209 * <p> 210 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 211 * </p> 212 * 213 * @param uuid the uuid 214 * @param start the lower bound of the range of d d l record sets 215 * @param end the upper bound of the range of d d l record sets (not inclusive) 216 * @return the range of matching d d l record sets 217 * @throws SystemException if a system exception occurred 218 */ 219 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByUuid( 220 java.lang.String uuid, int start, int end) 221 throws com.liferay.portal.kernel.exception.SystemException { 222 return getPersistence().findByUuid(uuid, start, end); 223 } 224 225 /** 226 * Returns an ordered range of all the d d l record sets where uuid = ?. 227 * 228 * <p> 229 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 230 * </p> 231 * 232 * @param uuid the uuid 233 * @param start the lower bound of the range of d d l record sets 234 * @param end the upper bound of the range of d d l record sets (not inclusive) 235 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 236 * @return the ordered range of matching d d l record sets 237 * @throws SystemException if a system exception occurred 238 */ 239 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByUuid( 240 java.lang.String uuid, int start, int end, 241 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 242 throws com.liferay.portal.kernel.exception.SystemException { 243 return getPersistence().findByUuid(uuid, start, end, orderByComparator); 244 } 245 246 /** 247 * Returns the first d d l record set in the ordered set where uuid = ?. 248 * 249 * @param uuid the uuid 250 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 251 * @return the first matching d d l record set 252 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found 253 * @throws SystemException if a system exception occurred 254 */ 255 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByUuid_First( 256 java.lang.String uuid, 257 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 258 throws com.liferay.portal.kernel.exception.SystemException, 259 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 260 return getPersistence().findByUuid_First(uuid, orderByComparator); 261 } 262 263 /** 264 * Returns the first d d l record set in the ordered set where uuid = ?. 265 * 266 * @param uuid the uuid 267 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 268 * @return the first matching d d l record set, or <code>null</code> if a matching d d l record set could not be found 269 * @throws SystemException if a system exception occurred 270 */ 271 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByUuid_First( 272 java.lang.String uuid, 273 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 274 throws com.liferay.portal.kernel.exception.SystemException { 275 return getPersistence().fetchByUuid_First(uuid, orderByComparator); 276 } 277 278 /** 279 * Returns the last d d l record set in the ordered set where uuid = ?. 280 * 281 * @param uuid the uuid 282 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 283 * @return the last matching d d l record set 284 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found 285 * @throws SystemException if a system exception occurred 286 */ 287 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByUuid_Last( 288 java.lang.String uuid, 289 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 290 throws com.liferay.portal.kernel.exception.SystemException, 291 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 292 return getPersistence().findByUuid_Last(uuid, orderByComparator); 293 } 294 295 /** 296 * Returns the last d d l record set in the ordered set where uuid = ?. 297 * 298 * @param uuid the uuid 299 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 300 * @return the last matching d d l record set, or <code>null</code> if a matching d d l record set could not be found 301 * @throws SystemException if a system exception occurred 302 */ 303 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByUuid_Last( 304 java.lang.String uuid, 305 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 306 throws com.liferay.portal.kernel.exception.SystemException { 307 return getPersistence().fetchByUuid_Last(uuid, orderByComparator); 308 } 309 310 /** 311 * Returns the d d l record sets before and after the current d d l record set in the ordered set where uuid = ?. 312 * 313 * @param recordSetId the primary key of the current d d l record set 314 * @param uuid the uuid 315 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 316 * @return the previous, current, and next d d l record set 317 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found 318 * @throws SystemException if a system exception occurred 319 */ 320 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet[] findByUuid_PrevAndNext( 321 long recordSetId, java.lang.String uuid, 322 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 323 throws com.liferay.portal.kernel.exception.SystemException, 324 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 325 return getPersistence() 326 .findByUuid_PrevAndNext(recordSetId, uuid, orderByComparator); 327 } 328 329 /** 330 * Returns the d d l record set where uuid = ? and groupId = ? or throws a {@link com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException} if it could not be found. 331 * 332 * @param uuid the uuid 333 * @param groupId the group ID 334 * @return the matching d d l record set 335 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found 336 * @throws SystemException if a system exception occurred 337 */ 338 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByUUID_G( 339 java.lang.String uuid, long groupId) 340 throws com.liferay.portal.kernel.exception.SystemException, 341 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 342 return getPersistence().findByUUID_G(uuid, groupId); 343 } 344 345 /** 346 * Returns the d d l record set where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found. Uses the finder cache. 347 * 348 * @param uuid the uuid 349 * @param groupId the group ID 350 * @return the matching d d l record set, or <code>null</code> if a matching d d l record set could not be found 351 * @throws SystemException if a system exception occurred 352 */ 353 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByUUID_G( 354 java.lang.String uuid, long groupId) 355 throws com.liferay.portal.kernel.exception.SystemException { 356 return getPersistence().fetchByUUID_G(uuid, groupId); 357 } 358 359 /** 360 * Returns the d d l record set where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. 361 * 362 * @param uuid the uuid 363 * @param groupId the group ID 364 * @param retrieveFromCache whether to use the finder cache 365 * @return the matching d d l record set, or <code>null</code> if a matching d d l record set could not be found 366 * @throws SystemException if a system exception occurred 367 */ 368 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByUUID_G( 369 java.lang.String uuid, long groupId, boolean retrieveFromCache) 370 throws com.liferay.portal.kernel.exception.SystemException { 371 return getPersistence().fetchByUUID_G(uuid, groupId, retrieveFromCache); 372 } 373 374 /** 375 * Returns all the d d l record sets where uuid = ? and companyId = ?. 376 * 377 * @param uuid the uuid 378 * @param companyId the company ID 379 * @return the matching d d l record sets 380 * @throws SystemException if a system exception occurred 381 */ 382 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByUuid_C( 383 java.lang.String uuid, long companyId) 384 throws com.liferay.portal.kernel.exception.SystemException { 385 return getPersistence().findByUuid_C(uuid, companyId); 386 } 387 388 /** 389 * Returns a range of all the d d l record sets where uuid = ? and companyId = ?. 390 * 391 * <p> 392 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 393 * </p> 394 * 395 * @param uuid the uuid 396 * @param companyId the company ID 397 * @param start the lower bound of the range of d d l record sets 398 * @param end the upper bound of the range of d d l record sets (not inclusive) 399 * @return the range of matching d d l record sets 400 * @throws SystemException if a system exception occurred 401 */ 402 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByUuid_C( 403 java.lang.String uuid, long companyId, int start, int end) 404 throws com.liferay.portal.kernel.exception.SystemException { 405 return getPersistence().findByUuid_C(uuid, companyId, start, end); 406 } 407 408 /** 409 * Returns an ordered range of all the d d l record sets where uuid = ? and companyId = ?. 410 * 411 * <p> 412 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 413 * </p> 414 * 415 * @param uuid the uuid 416 * @param companyId the company ID 417 * @param start the lower bound of the range of d d l record sets 418 * @param end the upper bound of the range of d d l record sets (not inclusive) 419 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 420 * @return the ordered range of matching d d l record sets 421 * @throws SystemException if a system exception occurred 422 */ 423 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByUuid_C( 424 java.lang.String uuid, long companyId, int start, int end, 425 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 426 throws com.liferay.portal.kernel.exception.SystemException { 427 return getPersistence() 428 .findByUuid_C(uuid, companyId, start, end, orderByComparator); 429 } 430 431 /** 432 * Returns the first d d l record set in the ordered set where uuid = ? and companyId = ?. 433 * 434 * @param uuid the uuid 435 * @param companyId the company ID 436 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 437 * @return the first matching d d l record set 438 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found 439 * @throws SystemException if a system exception occurred 440 */ 441 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByUuid_C_First( 442 java.lang.String uuid, long companyId, 443 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 444 throws com.liferay.portal.kernel.exception.SystemException, 445 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 446 return getPersistence() 447 .findByUuid_C_First(uuid, companyId, orderByComparator); 448 } 449 450 /** 451 * Returns the first d d l record set in the ordered set where uuid = ? and companyId = ?. 452 * 453 * @param uuid the uuid 454 * @param companyId the company ID 455 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 456 * @return the first matching d d l record set, or <code>null</code> if a matching d d l record set could not be found 457 * @throws SystemException if a system exception occurred 458 */ 459 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByUuid_C_First( 460 java.lang.String uuid, long companyId, 461 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 462 throws com.liferay.portal.kernel.exception.SystemException { 463 return getPersistence() 464 .fetchByUuid_C_First(uuid, companyId, orderByComparator); 465 } 466 467 /** 468 * Returns the last d d l record set in the ordered set where uuid = ? and companyId = ?. 469 * 470 * @param uuid the uuid 471 * @param companyId the company ID 472 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 473 * @return the last matching d d l record set 474 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found 475 * @throws SystemException if a system exception occurred 476 */ 477 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByUuid_C_Last( 478 java.lang.String uuid, long companyId, 479 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 480 throws com.liferay.portal.kernel.exception.SystemException, 481 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 482 return getPersistence() 483 .findByUuid_C_Last(uuid, companyId, orderByComparator); 484 } 485 486 /** 487 * Returns the last d d l record set in the ordered set where uuid = ? and companyId = ?. 488 * 489 * @param uuid the uuid 490 * @param companyId the company ID 491 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 492 * @return the last matching d d l record set, or <code>null</code> if a matching d d l record set could not be found 493 * @throws SystemException if a system exception occurred 494 */ 495 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByUuid_C_Last( 496 java.lang.String uuid, long companyId, 497 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 498 throws com.liferay.portal.kernel.exception.SystemException { 499 return getPersistence() 500 .fetchByUuid_C_Last(uuid, companyId, orderByComparator); 501 } 502 503 /** 504 * Returns the d d l record sets before and after the current d d l record set in the ordered set where uuid = ? and companyId = ?. 505 * 506 * @param recordSetId the primary key of the current d d l record set 507 * @param uuid the uuid 508 * @param companyId the company ID 509 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 510 * @return the previous, current, and next d d l record set 511 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found 512 * @throws SystemException if a system exception occurred 513 */ 514 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet[] findByUuid_C_PrevAndNext( 515 long recordSetId, java.lang.String uuid, long companyId, 516 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 517 throws com.liferay.portal.kernel.exception.SystemException, 518 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 519 return getPersistence() 520 .findByUuid_C_PrevAndNext(recordSetId, uuid, companyId, 521 orderByComparator); 522 } 523 524 /** 525 * Returns all the d d l record sets where groupId = ?. 526 * 527 * @param groupId the group ID 528 * @return the matching d d l record sets 529 * @throws SystemException if a system exception occurred 530 */ 531 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByGroupId( 532 long groupId) 533 throws com.liferay.portal.kernel.exception.SystemException { 534 return getPersistence().findByGroupId(groupId); 535 } 536 537 /** 538 * Returns a range of all the d d l record sets where groupId = ?. 539 * 540 * <p> 541 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 542 * </p> 543 * 544 * @param groupId the group ID 545 * @param start the lower bound of the range of d d l record sets 546 * @param end the upper bound of the range of d d l record sets (not inclusive) 547 * @return the range of matching d d l record sets 548 * @throws SystemException if a system exception occurred 549 */ 550 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByGroupId( 551 long groupId, int start, int end) 552 throws com.liferay.portal.kernel.exception.SystemException { 553 return getPersistence().findByGroupId(groupId, start, end); 554 } 555 556 /** 557 * Returns an ordered range of all the d d l record sets where groupId = ?. 558 * 559 * <p> 560 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 561 * </p> 562 * 563 * @param groupId the group ID 564 * @param start the lower bound of the range of d d l record sets 565 * @param end the upper bound of the range of d d l record sets (not inclusive) 566 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 567 * @return the ordered range of matching d d l record sets 568 * @throws SystemException if a system exception occurred 569 */ 570 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByGroupId( 571 long groupId, int start, int end, 572 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 573 throws com.liferay.portal.kernel.exception.SystemException { 574 return getPersistence() 575 .findByGroupId(groupId, start, end, orderByComparator); 576 } 577 578 /** 579 * Returns the first d d l record set in the ordered set where groupId = ?. 580 * 581 * @param groupId the group ID 582 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 583 * @return the first matching d d l record set 584 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found 585 * @throws SystemException if a system exception occurred 586 */ 587 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByGroupId_First( 588 long groupId, 589 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 590 throws com.liferay.portal.kernel.exception.SystemException, 591 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 592 return getPersistence().findByGroupId_First(groupId, orderByComparator); 593 } 594 595 /** 596 * Returns the first d d l record set in the ordered set where groupId = ?. 597 * 598 * @param groupId the group ID 599 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 600 * @return the first matching d d l record set, or <code>null</code> if a matching d d l record set could not be found 601 * @throws SystemException if a system exception occurred 602 */ 603 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByGroupId_First( 604 long groupId, 605 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 606 throws com.liferay.portal.kernel.exception.SystemException { 607 return getPersistence().fetchByGroupId_First(groupId, orderByComparator); 608 } 609 610 /** 611 * Returns the last d d l record set in the ordered set where groupId = ?. 612 * 613 * @param groupId the group ID 614 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 615 * @return the last matching d d l record set 616 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found 617 * @throws SystemException if a system exception occurred 618 */ 619 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByGroupId_Last( 620 long groupId, 621 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 622 throws com.liferay.portal.kernel.exception.SystemException, 623 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 624 return getPersistence().findByGroupId_Last(groupId, orderByComparator); 625 } 626 627 /** 628 * Returns the last d d l record set in the ordered set where groupId = ?. 629 * 630 * @param groupId the group ID 631 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 632 * @return the last matching d d l record set, or <code>null</code> if a matching d d l record set could not be found 633 * @throws SystemException if a system exception occurred 634 */ 635 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByGroupId_Last( 636 long groupId, 637 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 638 throws com.liferay.portal.kernel.exception.SystemException { 639 return getPersistence().fetchByGroupId_Last(groupId, orderByComparator); 640 } 641 642 /** 643 * Returns the d d l record sets before and after the current d d l record set in the ordered set where groupId = ?. 644 * 645 * @param recordSetId the primary key of the current d d l record set 646 * @param groupId the group ID 647 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 648 * @return the previous, current, and next d d l record set 649 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found 650 * @throws SystemException if a system exception occurred 651 */ 652 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet[] findByGroupId_PrevAndNext( 653 long recordSetId, long groupId, 654 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 655 throws com.liferay.portal.kernel.exception.SystemException, 656 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 657 return getPersistence() 658 .findByGroupId_PrevAndNext(recordSetId, groupId, 659 orderByComparator); 660 } 661 662 /** 663 * Returns all the d d l record sets that the user has permission to view where groupId = ?. 664 * 665 * @param groupId the group ID 666 * @return the matching d d l record sets that the user has permission to view 667 * @throws SystemException if a system exception occurred 668 */ 669 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> filterFindByGroupId( 670 long groupId) 671 throws com.liferay.portal.kernel.exception.SystemException { 672 return getPersistence().filterFindByGroupId(groupId); 673 } 674 675 /** 676 * Returns a range of all the d d l record sets that the user has permission to view where groupId = ?. 677 * 678 * <p> 679 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 680 * </p> 681 * 682 * @param groupId the group ID 683 * @param start the lower bound of the range of d d l record sets 684 * @param end the upper bound of the range of d d l record sets (not inclusive) 685 * @return the range of matching d d l record sets that the user has permission to view 686 * @throws SystemException if a system exception occurred 687 */ 688 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> filterFindByGroupId( 689 long groupId, int start, int end) 690 throws com.liferay.portal.kernel.exception.SystemException { 691 return getPersistence().filterFindByGroupId(groupId, start, end); 692 } 693 694 /** 695 * Returns an ordered range of all the d d l record sets that the user has permissions to view where groupId = ?. 696 * 697 * <p> 698 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 699 * </p> 700 * 701 * @param groupId the group ID 702 * @param start the lower bound of the range of d d l record sets 703 * @param end the upper bound of the range of d d l record sets (not inclusive) 704 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 705 * @return the ordered range of matching d d l record sets that the user has permission to view 706 * @throws SystemException if a system exception occurred 707 */ 708 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> filterFindByGroupId( 709 long groupId, int start, int end, 710 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 711 throws com.liferay.portal.kernel.exception.SystemException { 712 return getPersistence() 713 .filterFindByGroupId(groupId, start, end, orderByComparator); 714 } 715 716 /** 717 * Returns the d d l record sets before and after the current d d l record set in the ordered set of d d l record sets that the user has permission to view where groupId = ?. 718 * 719 * @param recordSetId the primary key of the current d d l record set 720 * @param groupId the group ID 721 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 722 * @return the previous, current, and next d d l record set 723 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found 724 * @throws SystemException if a system exception occurred 725 */ 726 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet[] filterFindByGroupId_PrevAndNext( 727 long recordSetId, long groupId, 728 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 729 throws com.liferay.portal.kernel.exception.SystemException, 730 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 731 return getPersistence() 732 .filterFindByGroupId_PrevAndNext(recordSetId, groupId, 733 orderByComparator); 734 } 735 736 /** 737 * Returns the d d l record set where groupId = ? and recordSetKey = ? or throws a {@link com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException} if it could not be found. 738 * 739 * @param groupId the group ID 740 * @param recordSetKey the record set key 741 * @return the matching d d l record set 742 * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found 743 * @throws SystemException if a system exception occurred 744 */ 745 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByG_R( 746 long groupId, java.lang.String recordSetKey) 747 throws com.liferay.portal.kernel.exception.SystemException, 748 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 749 return getPersistence().findByG_R(groupId, recordSetKey); 750 } 751 752 /** 753 * Returns the d d l record set where groupId = ? and recordSetKey = ? or returns <code>null</code> if it could not be found. Uses the finder cache. 754 * 755 * @param groupId the group ID 756 * @param recordSetKey the record set key 757 * @return the matching d d l record set, or <code>null</code> if a matching d d l record set could not be found 758 * @throws SystemException if a system exception occurred 759 */ 760 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByG_R( 761 long groupId, java.lang.String recordSetKey) 762 throws com.liferay.portal.kernel.exception.SystemException { 763 return getPersistence().fetchByG_R(groupId, recordSetKey); 764 } 765 766 /** 767 * Returns the d d l record set where groupId = ? and recordSetKey = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. 768 * 769 * @param groupId the group ID 770 * @param recordSetKey the record set key 771 * @param retrieveFromCache whether to use the finder cache 772 * @return the matching d d l record set, or <code>null</code> if a matching d d l record set could not be found 773 * @throws SystemException if a system exception occurred 774 */ 775 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByG_R( 776 long groupId, java.lang.String recordSetKey, boolean retrieveFromCache) 777 throws com.liferay.portal.kernel.exception.SystemException { 778 return getPersistence() 779 .fetchByG_R(groupId, recordSetKey, retrieveFromCache); 780 } 781 782 /** 783 * Returns all the d d l record sets. 784 * 785 * @return the d d l record sets 786 * @throws SystemException if a system exception occurred 787 */ 788 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findAll() 789 throws com.liferay.portal.kernel.exception.SystemException { 790 return getPersistence().findAll(); 791 } 792 793 /** 794 * Returns a range of all the d d l record sets. 795 * 796 * <p> 797 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 798 * </p> 799 * 800 * @param start the lower bound of the range of d d l record sets 801 * @param end the upper bound of the range of d d l record sets (not inclusive) 802 * @return the range of d d l record sets 803 * @throws SystemException if a system exception occurred 804 */ 805 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findAll( 806 int start, int end) 807 throws com.liferay.portal.kernel.exception.SystemException { 808 return getPersistence().findAll(start, end); 809 } 810 811 /** 812 * Returns an ordered range of all the d d l record sets. 813 * 814 * <p> 815 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 816 * </p> 817 * 818 * @param start the lower bound of the range of d d l record sets 819 * @param end the upper bound of the range of d d l record sets (not inclusive) 820 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 821 * @return the ordered range of d d l record sets 822 * @throws SystemException if a system exception occurred 823 */ 824 public static java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findAll( 825 int start, int end, 826 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 827 throws com.liferay.portal.kernel.exception.SystemException { 828 return getPersistence().findAll(start, end, orderByComparator); 829 } 830 831 /** 832 * Removes all the d d l record sets where uuid = ? from the database. 833 * 834 * @param uuid the uuid 835 * @throws SystemException if a system exception occurred 836 */ 837 public static void removeByUuid(java.lang.String uuid) 838 throws com.liferay.portal.kernel.exception.SystemException { 839 getPersistence().removeByUuid(uuid); 840 } 841 842 /** 843 * Removes the d d l record set where uuid = ? and groupId = ? from the database. 844 * 845 * @param uuid the uuid 846 * @param groupId the group ID 847 * @return the d d l record set that was removed 848 * @throws SystemException if a system exception occurred 849 */ 850 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet removeByUUID_G( 851 java.lang.String uuid, long groupId) 852 throws com.liferay.portal.kernel.exception.SystemException, 853 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 854 return getPersistence().removeByUUID_G(uuid, groupId); 855 } 856 857 /** 858 * Removes all the d d l record sets where uuid = ? and companyId = ? from the database. 859 * 860 * @param uuid the uuid 861 * @param companyId the company ID 862 * @throws SystemException if a system exception occurred 863 */ 864 public static void removeByUuid_C(java.lang.String uuid, long companyId) 865 throws com.liferay.portal.kernel.exception.SystemException { 866 getPersistence().removeByUuid_C(uuid, companyId); 867 } 868 869 /** 870 * Removes all the d d l record sets where groupId = ? from the database. 871 * 872 * @param groupId the group ID 873 * @throws SystemException if a system exception occurred 874 */ 875 public static void removeByGroupId(long groupId) 876 throws com.liferay.portal.kernel.exception.SystemException { 877 getPersistence().removeByGroupId(groupId); 878 } 879 880 /** 881 * Removes the d d l record set where groupId = ? and recordSetKey = ? from the database. 882 * 883 * @param groupId the group ID 884 * @param recordSetKey the record set key 885 * @return the d d l record set that was removed 886 * @throws SystemException if a system exception occurred 887 */ 888 public static com.liferay.portlet.dynamicdatalists.model.DDLRecordSet removeByG_R( 889 long groupId, java.lang.String recordSetKey) 890 throws com.liferay.portal.kernel.exception.SystemException, 891 com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException { 892 return getPersistence().removeByG_R(groupId, recordSetKey); 893 } 894 895 /** 896 * Removes all the d d l record sets from the database. 897 * 898 * @throws SystemException if a system exception occurred 899 */ 900 public static void removeAll() 901 throws com.liferay.portal.kernel.exception.SystemException { 902 getPersistence().removeAll(); 903 } 904 905 /** 906 * Returns the number of d d l record sets where uuid = ?. 907 * 908 * @param uuid the uuid 909 * @return the number of matching d d l record sets 910 * @throws SystemException if a system exception occurred 911 */ 912 public static int countByUuid(java.lang.String uuid) 913 throws com.liferay.portal.kernel.exception.SystemException { 914 return getPersistence().countByUuid(uuid); 915 } 916 917 /** 918 * Returns the number of d d l record sets where uuid = ? and groupId = ?. 919 * 920 * @param uuid the uuid 921 * @param groupId the group ID 922 * @return the number of matching d d l record sets 923 * @throws SystemException if a system exception occurred 924 */ 925 public static int countByUUID_G(java.lang.String uuid, long groupId) 926 throws com.liferay.portal.kernel.exception.SystemException { 927 return getPersistence().countByUUID_G(uuid, groupId); 928 } 929 930 /** 931 * Returns the number of d d l record sets where uuid = ? and companyId = ?. 932 * 933 * @param uuid the uuid 934 * @param companyId the company ID 935 * @return the number of matching d d l record sets 936 * @throws SystemException if a system exception occurred 937 */ 938 public static int countByUuid_C(java.lang.String uuid, long companyId) 939 throws com.liferay.portal.kernel.exception.SystemException { 940 return getPersistence().countByUuid_C(uuid, companyId); 941 } 942 943 /** 944 * Returns the number of d d l record sets where groupId = ?. 945 * 946 * @param groupId the group ID 947 * @return the number of matching d d l record sets 948 * @throws SystemException if a system exception occurred 949 */ 950 public static int countByGroupId(long groupId) 951 throws com.liferay.portal.kernel.exception.SystemException { 952 return getPersistence().countByGroupId(groupId); 953 } 954 955 /** 956 * Returns the number of d d l record sets that the user has permission to view where groupId = ?. 957 * 958 * @param groupId the group ID 959 * @return the number of matching d d l record sets that the user has permission to view 960 * @throws SystemException if a system exception occurred 961 */ 962 public static int filterCountByGroupId(long groupId) 963 throws com.liferay.portal.kernel.exception.SystemException { 964 return getPersistence().filterCountByGroupId(groupId); 965 } 966 967 /** 968 * Returns the number of d d l record sets where groupId = ? and recordSetKey = ?. 969 * 970 * @param groupId the group ID 971 * @param recordSetKey the record set key 972 * @return the number of matching d d l record sets 973 * @throws SystemException if a system exception occurred 974 */ 975 public static int countByG_R(long groupId, java.lang.String recordSetKey) 976 throws com.liferay.portal.kernel.exception.SystemException { 977 return getPersistence().countByG_R(groupId, recordSetKey); 978 } 979 980 /** 981 * Returns the number of d d l record sets. 982 * 983 * @return the number of d d l record sets 984 * @throws SystemException if a system exception occurred 985 */ 986 public static int countAll() 987 throws com.liferay.portal.kernel.exception.SystemException { 988 return getPersistence().countAll(); 989 } 990 991 public static DDLRecordSetPersistence getPersistence() { 992 if (_persistence == null) { 993 _persistence = (DDLRecordSetPersistence)PortalBeanLocatorUtil.locate(DDLRecordSetPersistence.class.getName()); 994 995 ReferenceRegistry.registerReference(DDLRecordSetUtil.class, 996 "_persistence"); 997 } 998 999 return _persistence; 1000 } 1001 1002 /** 1003 * @deprecated 1004 */ 1005 public void setPersistence(DDLRecordSetPersistence persistence) { 1006 } 1007 1008 private static DDLRecordSetPersistence _persistence; 1009 }