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