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.polls.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.polls.model.PollsQuestion; 025 026 import java.util.List; 027 028 /** 029 * The persistence utility for the polls question service. This utility wraps {@link PollsQuestionPersistenceImpl} 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 PollsQuestionPersistence 037 * @see PollsQuestionPersistenceImpl 038 * @generated 039 */ 040 public class PollsQuestionUtil { 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(PollsQuestion pollsQuestion) { 058 getPersistence().clearCache(pollsQuestion); 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<PollsQuestion> 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<PollsQuestion> 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<PollsQuestion> 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 PollsQuestion update(PollsQuestion pollsQuestion) 101 throws SystemException { 102 return getPersistence().update(pollsQuestion); 103 } 104 105 /** 106 * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, ServiceContext) 107 */ 108 public static PollsQuestion update(PollsQuestion pollsQuestion, 109 ServiceContext serviceContext) throws SystemException { 110 return getPersistence().update(pollsQuestion, serviceContext); 111 } 112 113 /** 114 * Caches the polls question in the entity cache if it is enabled. 115 * 116 * @param pollsQuestion the polls question 117 */ 118 public static void cacheResult( 119 com.liferay.portlet.polls.model.PollsQuestion pollsQuestion) { 120 getPersistence().cacheResult(pollsQuestion); 121 } 122 123 /** 124 * Caches the polls questions in the entity cache if it is enabled. 125 * 126 * @param pollsQuestions the polls questions 127 */ 128 public static void cacheResult( 129 java.util.List<com.liferay.portlet.polls.model.PollsQuestion> pollsQuestions) { 130 getPersistence().cacheResult(pollsQuestions); 131 } 132 133 /** 134 * Creates a new polls question with the primary key. Does not add the polls question to the database. 135 * 136 * @param questionId the primary key for the new polls question 137 * @return the new polls question 138 */ 139 public static com.liferay.portlet.polls.model.PollsQuestion create( 140 long questionId) { 141 return getPersistence().create(questionId); 142 } 143 144 /** 145 * Removes the polls question with the primary key from the database. Also notifies the appropriate model listeners. 146 * 147 * @param questionId the primary key of the polls question 148 * @return the polls question that was removed 149 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a polls question with the primary key could not be found 150 * @throws SystemException if a system exception occurred 151 */ 152 public static com.liferay.portlet.polls.model.PollsQuestion remove( 153 long questionId) 154 throws com.liferay.portal.kernel.exception.SystemException, 155 com.liferay.portlet.polls.NoSuchQuestionException { 156 return getPersistence().remove(questionId); 157 } 158 159 public static com.liferay.portlet.polls.model.PollsQuestion updateImpl( 160 com.liferay.portlet.polls.model.PollsQuestion pollsQuestion) 161 throws com.liferay.portal.kernel.exception.SystemException { 162 return getPersistence().updateImpl(pollsQuestion); 163 } 164 165 /** 166 * Returns the polls question with the primary key or throws a {@link com.liferay.portlet.polls.NoSuchQuestionException} if it could not be found. 167 * 168 * @param questionId the primary key of the polls question 169 * @return the polls question 170 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a polls question with the primary key could not be found 171 * @throws SystemException if a system exception occurred 172 */ 173 public static com.liferay.portlet.polls.model.PollsQuestion findByPrimaryKey( 174 long questionId) 175 throws com.liferay.portal.kernel.exception.SystemException, 176 com.liferay.portlet.polls.NoSuchQuestionException { 177 return getPersistence().findByPrimaryKey(questionId); 178 } 179 180 /** 181 * Returns the polls question with the primary key or returns <code>null</code> if it could not be found. 182 * 183 * @param questionId the primary key of the polls question 184 * @return the polls question, or <code>null</code> if a polls question with the primary key could not be found 185 * @throws SystemException if a system exception occurred 186 */ 187 public static com.liferay.portlet.polls.model.PollsQuestion fetchByPrimaryKey( 188 long questionId) 189 throws com.liferay.portal.kernel.exception.SystemException { 190 return getPersistence().fetchByPrimaryKey(questionId); 191 } 192 193 /** 194 * Returns all the polls questions where uuid = ?. 195 * 196 * @param uuid the uuid 197 * @return the matching polls questions 198 * @throws SystemException if a system exception occurred 199 */ 200 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> 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 polls questions 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 polls questions 215 * @param end the upper bound of the range of polls questions (not inclusive) 216 * @return the range of matching polls questions 217 * @throws SystemException if a system exception occurred 218 */ 219 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> 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 polls questions 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 polls questions 234 * @param end the upper bound of the range of polls questions (not inclusive) 235 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 236 * @return the ordered range of matching polls questions 237 * @throws SystemException if a system exception occurred 238 */ 239 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> 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 polls question 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 polls question 252 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a matching polls question could not be found 253 * @throws SystemException if a system exception occurred 254 */ 255 public static com.liferay.portlet.polls.model.PollsQuestion 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.polls.NoSuchQuestionException { 260 return getPersistence().findByUuid_First(uuid, orderByComparator); 261 } 262 263 /** 264 * Returns the first polls question 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 polls question, or <code>null</code> if a matching polls question could not be found 269 * @throws SystemException if a system exception occurred 270 */ 271 public static com.liferay.portlet.polls.model.PollsQuestion 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 polls question 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 polls question 284 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a matching polls question could not be found 285 * @throws SystemException if a system exception occurred 286 */ 287 public static com.liferay.portlet.polls.model.PollsQuestion 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.polls.NoSuchQuestionException { 292 return getPersistence().findByUuid_Last(uuid, orderByComparator); 293 } 294 295 /** 296 * Returns the last polls question 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 polls question, or <code>null</code> if a matching polls question could not be found 301 * @throws SystemException if a system exception occurred 302 */ 303 public static com.liferay.portlet.polls.model.PollsQuestion 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 polls questions before and after the current polls question in the ordered set where uuid = ?. 312 * 313 * @param questionId the primary key of the current polls question 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 polls question 317 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a polls question with the primary key could not be found 318 * @throws SystemException if a system exception occurred 319 */ 320 public static com.liferay.portlet.polls.model.PollsQuestion[] findByUuid_PrevAndNext( 321 long questionId, java.lang.String uuid, 322 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 323 throws com.liferay.portal.kernel.exception.SystemException, 324 com.liferay.portlet.polls.NoSuchQuestionException { 325 return getPersistence() 326 .findByUuid_PrevAndNext(questionId, uuid, orderByComparator); 327 } 328 329 /** 330 * Returns the polls question where uuid = ? and groupId = ? or throws a {@link com.liferay.portlet.polls.NoSuchQuestionException} if it could not be found. 331 * 332 * @param uuid the uuid 333 * @param groupId the group ID 334 * @return the matching polls question 335 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a matching polls question could not be found 336 * @throws SystemException if a system exception occurred 337 */ 338 public static com.liferay.portlet.polls.model.PollsQuestion findByUUID_G( 339 java.lang.String uuid, long groupId) 340 throws com.liferay.portal.kernel.exception.SystemException, 341 com.liferay.portlet.polls.NoSuchQuestionException { 342 return getPersistence().findByUUID_G(uuid, groupId); 343 } 344 345 /** 346 * Returns the polls question 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 polls question, or <code>null</code> if a matching polls question could not be found 351 * @throws SystemException if a system exception occurred 352 */ 353 public static com.liferay.portlet.polls.model.PollsQuestion 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 polls question 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 polls question, or <code>null</code> if a matching polls question could not be found 366 * @throws SystemException if a system exception occurred 367 */ 368 public static com.liferay.portlet.polls.model.PollsQuestion 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 polls questions where uuid = ? and companyId = ?. 376 * 377 * @param uuid the uuid 378 * @param companyId the company ID 379 * @return the matching polls questions 380 * @throws SystemException if a system exception occurred 381 */ 382 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> 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 polls questions 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 polls questions 398 * @param end the upper bound of the range of polls questions (not inclusive) 399 * @return the range of matching polls questions 400 * @throws SystemException if a system exception occurred 401 */ 402 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> 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 polls questions 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 polls questions 418 * @param end the upper bound of the range of polls questions (not inclusive) 419 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 420 * @return the ordered range of matching polls questions 421 * @throws SystemException if a system exception occurred 422 */ 423 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> 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 polls question 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 polls question 438 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a matching polls question could not be found 439 * @throws SystemException if a system exception occurred 440 */ 441 public static com.liferay.portlet.polls.model.PollsQuestion 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.polls.NoSuchQuestionException { 446 return getPersistence() 447 .findByUuid_C_First(uuid, companyId, orderByComparator); 448 } 449 450 /** 451 * Returns the first polls question 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 polls question, or <code>null</code> if a matching polls question could not be found 457 * @throws SystemException if a system exception occurred 458 */ 459 public static com.liferay.portlet.polls.model.PollsQuestion 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 polls question 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 polls question 474 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a matching polls question could not be found 475 * @throws SystemException if a system exception occurred 476 */ 477 public static com.liferay.portlet.polls.model.PollsQuestion 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.polls.NoSuchQuestionException { 482 return getPersistence() 483 .findByUuid_C_Last(uuid, companyId, orderByComparator); 484 } 485 486 /** 487 * Returns the last polls question 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 polls question, or <code>null</code> if a matching polls question could not be found 493 * @throws SystemException if a system exception occurred 494 */ 495 public static com.liferay.portlet.polls.model.PollsQuestion 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 polls questions before and after the current polls question in the ordered set where uuid = ? and companyId = ?. 505 * 506 * @param questionId the primary key of the current polls question 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 polls question 511 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a polls question with the primary key could not be found 512 * @throws SystemException if a system exception occurred 513 */ 514 public static com.liferay.portlet.polls.model.PollsQuestion[] findByUuid_C_PrevAndNext( 515 long questionId, 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.polls.NoSuchQuestionException { 519 return getPersistence() 520 .findByUuid_C_PrevAndNext(questionId, uuid, companyId, 521 orderByComparator); 522 } 523 524 /** 525 * Returns all the polls questions where groupId = ?. 526 * 527 * @param groupId the group ID 528 * @return the matching polls questions 529 * @throws SystemException if a system exception occurred 530 */ 531 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> 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 polls questions 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 polls questions 546 * @param end the upper bound of the range of polls questions (not inclusive) 547 * @return the range of matching polls questions 548 * @throws SystemException if a system exception occurred 549 */ 550 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> 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 polls questions 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 polls questions 565 * @param end the upper bound of the range of polls questions (not inclusive) 566 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 567 * @return the ordered range of matching polls questions 568 * @throws SystemException if a system exception occurred 569 */ 570 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> 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 polls question 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 polls question 584 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a matching polls question could not be found 585 * @throws SystemException if a system exception occurred 586 */ 587 public static com.liferay.portlet.polls.model.PollsQuestion 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.polls.NoSuchQuestionException { 592 return getPersistence().findByGroupId_First(groupId, orderByComparator); 593 } 594 595 /** 596 * Returns the first polls question 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 polls question, or <code>null</code> if a matching polls question could not be found 601 * @throws SystemException if a system exception occurred 602 */ 603 public static com.liferay.portlet.polls.model.PollsQuestion 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 polls question 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 polls question 616 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a matching polls question could not be found 617 * @throws SystemException if a system exception occurred 618 */ 619 public static com.liferay.portlet.polls.model.PollsQuestion 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.polls.NoSuchQuestionException { 624 return getPersistence().findByGroupId_Last(groupId, orderByComparator); 625 } 626 627 /** 628 * Returns the last polls question 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 polls question, or <code>null</code> if a matching polls question could not be found 633 * @throws SystemException if a system exception occurred 634 */ 635 public static com.liferay.portlet.polls.model.PollsQuestion 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 polls questions before and after the current polls question in the ordered set where groupId = ?. 644 * 645 * @param questionId the primary key of the current polls question 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 polls question 649 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a polls question with the primary key could not be found 650 * @throws SystemException if a system exception occurred 651 */ 652 public static com.liferay.portlet.polls.model.PollsQuestion[] findByGroupId_PrevAndNext( 653 long questionId, long groupId, 654 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 655 throws com.liferay.portal.kernel.exception.SystemException, 656 com.liferay.portlet.polls.NoSuchQuestionException { 657 return getPersistence() 658 .findByGroupId_PrevAndNext(questionId, groupId, 659 orderByComparator); 660 } 661 662 /** 663 * Returns all the polls questions that the user has permission to view where groupId = ?. 664 * 665 * @param groupId the group ID 666 * @return the matching polls questions 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.polls.model.PollsQuestion> 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 polls questions 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 polls questions 684 * @param end the upper bound of the range of polls questions (not inclusive) 685 * @return the range of matching polls questions 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.polls.model.PollsQuestion> 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 polls questions 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 polls questions 703 * @param end the upper bound of the range of polls questions (not inclusive) 704 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 705 * @return the ordered range of matching polls questions 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.polls.model.PollsQuestion> 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 polls questions before and after the current polls question in the ordered set of polls questions that the user has permission to view where groupId = ?. 718 * 719 * @param questionId the primary key of the current polls question 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 polls question 723 * @throws com.liferay.portlet.polls.NoSuchQuestionException if a polls question with the primary key could not be found 724 * @throws SystemException if a system exception occurred 725 */ 726 public static com.liferay.portlet.polls.model.PollsQuestion[] filterFindByGroupId_PrevAndNext( 727 long questionId, long groupId, 728 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 729 throws com.liferay.portal.kernel.exception.SystemException, 730 com.liferay.portlet.polls.NoSuchQuestionException { 731 return getPersistence() 732 .filterFindByGroupId_PrevAndNext(questionId, groupId, 733 orderByComparator); 734 } 735 736 /** 737 * Returns all the polls questions. 738 * 739 * @return the polls questions 740 * @throws SystemException if a system exception occurred 741 */ 742 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> findAll() 743 throws com.liferay.portal.kernel.exception.SystemException { 744 return getPersistence().findAll(); 745 } 746 747 /** 748 * Returns a range of all the polls questions. 749 * 750 * <p> 751 * 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. 752 * </p> 753 * 754 * @param start the lower bound of the range of polls questions 755 * @param end the upper bound of the range of polls questions (not inclusive) 756 * @return the range of polls questions 757 * @throws SystemException if a system exception occurred 758 */ 759 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> findAll( 760 int start, int end) 761 throws com.liferay.portal.kernel.exception.SystemException { 762 return getPersistence().findAll(start, end); 763 } 764 765 /** 766 * Returns an ordered range of all the polls questions. 767 * 768 * <p> 769 * 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. 770 * </p> 771 * 772 * @param start the lower bound of the range of polls questions 773 * @param end the upper bound of the range of polls questions (not inclusive) 774 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 775 * @return the ordered range of polls questions 776 * @throws SystemException if a system exception occurred 777 */ 778 public static java.util.List<com.liferay.portlet.polls.model.PollsQuestion> findAll( 779 int start, int end, 780 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 781 throws com.liferay.portal.kernel.exception.SystemException { 782 return getPersistence().findAll(start, end, orderByComparator); 783 } 784 785 /** 786 * Removes all the polls questions where uuid = ? from the database. 787 * 788 * @param uuid the uuid 789 * @throws SystemException if a system exception occurred 790 */ 791 public static void removeByUuid(java.lang.String uuid) 792 throws com.liferay.portal.kernel.exception.SystemException { 793 getPersistence().removeByUuid(uuid); 794 } 795 796 /** 797 * Removes the polls question where uuid = ? and groupId = ? from the database. 798 * 799 * @param uuid the uuid 800 * @param groupId the group ID 801 * @return the polls question that was removed 802 * @throws SystemException if a system exception occurred 803 */ 804 public static com.liferay.portlet.polls.model.PollsQuestion removeByUUID_G( 805 java.lang.String uuid, long groupId) 806 throws com.liferay.portal.kernel.exception.SystemException, 807 com.liferay.portlet.polls.NoSuchQuestionException { 808 return getPersistence().removeByUUID_G(uuid, groupId); 809 } 810 811 /** 812 * Removes all the polls questions where uuid = ? and companyId = ? from the database. 813 * 814 * @param uuid the uuid 815 * @param companyId the company ID 816 * @throws SystemException if a system exception occurred 817 */ 818 public static void removeByUuid_C(java.lang.String uuid, long companyId) 819 throws com.liferay.portal.kernel.exception.SystemException { 820 getPersistence().removeByUuid_C(uuid, companyId); 821 } 822 823 /** 824 * Removes all the polls questions where groupId = ? from the database. 825 * 826 * @param groupId the group ID 827 * @throws SystemException if a system exception occurred 828 */ 829 public static void removeByGroupId(long groupId) 830 throws com.liferay.portal.kernel.exception.SystemException { 831 getPersistence().removeByGroupId(groupId); 832 } 833 834 /** 835 * Removes all the polls questions from the database. 836 * 837 * @throws SystemException if a system exception occurred 838 */ 839 public static void removeAll() 840 throws com.liferay.portal.kernel.exception.SystemException { 841 getPersistence().removeAll(); 842 } 843 844 /** 845 * Returns the number of polls questions where uuid = ?. 846 * 847 * @param uuid the uuid 848 * @return the number of matching polls questions 849 * @throws SystemException if a system exception occurred 850 */ 851 public static int countByUuid(java.lang.String uuid) 852 throws com.liferay.portal.kernel.exception.SystemException { 853 return getPersistence().countByUuid(uuid); 854 } 855 856 /** 857 * Returns the number of polls questions where uuid = ? and groupId = ?. 858 * 859 * @param uuid the uuid 860 * @param groupId the group ID 861 * @return the number of matching polls questions 862 * @throws SystemException if a system exception occurred 863 */ 864 public static int countByUUID_G(java.lang.String uuid, long groupId) 865 throws com.liferay.portal.kernel.exception.SystemException { 866 return getPersistence().countByUUID_G(uuid, groupId); 867 } 868 869 /** 870 * Returns the number of polls questions where uuid = ? and companyId = ?. 871 * 872 * @param uuid the uuid 873 * @param companyId the company ID 874 * @return the number of matching polls questions 875 * @throws SystemException if a system exception occurred 876 */ 877 public static int countByUuid_C(java.lang.String uuid, long companyId) 878 throws com.liferay.portal.kernel.exception.SystemException { 879 return getPersistence().countByUuid_C(uuid, companyId); 880 } 881 882 /** 883 * Returns the number of polls questions where groupId = ?. 884 * 885 * @param groupId the group ID 886 * @return the number of matching polls questions 887 * @throws SystemException if a system exception occurred 888 */ 889 public static int countByGroupId(long groupId) 890 throws com.liferay.portal.kernel.exception.SystemException { 891 return getPersistence().countByGroupId(groupId); 892 } 893 894 /** 895 * Returns the number of polls questions that the user has permission to view where groupId = ?. 896 * 897 * @param groupId the group ID 898 * @return the number of matching polls questions that the user has permission to view 899 * @throws SystemException if a system exception occurred 900 */ 901 public static int filterCountByGroupId(long groupId) 902 throws com.liferay.portal.kernel.exception.SystemException { 903 return getPersistence().filterCountByGroupId(groupId); 904 } 905 906 /** 907 * Returns the number of polls questions. 908 * 909 * @return the number of polls questions 910 * @throws SystemException if a system exception occurred 911 */ 912 public static int countAll() 913 throws com.liferay.portal.kernel.exception.SystemException { 914 return getPersistence().countAll(); 915 } 916 917 public static PollsQuestionPersistence getPersistence() { 918 if (_persistence == null) { 919 _persistence = (PollsQuestionPersistence)PortalBeanLocatorUtil.locate(PollsQuestionPersistence.class.getName()); 920 921 ReferenceRegistry.registerReference(PollsQuestionUtil.class, 922 "_persistence"); 923 } 924 925 return _persistence; 926 } 927 928 /** 929 * @deprecated 930 */ 931 public void setPersistence(PollsQuestionPersistence persistence) { 932 } 933 934 private static PollsQuestionPersistence _persistence; 935 }