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.PollsVote; 027 028 import java.util.List; 029 030 /** 031 * The persistence utility for the polls vote service. This utility wraps {@link PollsVotePersistenceImpl} 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 PollsVotePersistence 039 * @see PollsVotePersistenceImpl 040 * @generated 041 */ 042 @ProviderType 043 public class PollsVoteUtil { 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(PollsVote pollsVote) { 061 getPersistence().clearCache(pollsVote); 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<PollsVote> 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<PollsVote> 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<PollsVote> 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 PollsVote update(PollsVote pollsVote) 104 throws SystemException { 105 return getPersistence().update(pollsVote); 106 } 107 108 /** 109 * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, ServiceContext) 110 */ 111 public static PollsVote update(PollsVote pollsVote, 112 ServiceContext serviceContext) throws SystemException { 113 return getPersistence().update(pollsVote, serviceContext); 114 } 115 116 /** 117 * Returns all the polls votes where uuid = ?. 118 * 119 * @param uuid the uuid 120 * @return the matching polls votes 121 * @throws SystemException if a system exception occurred 122 */ 123 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> 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 votes 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.PollsVoteModelImpl}. 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 votes 138 * @param end the upper bound of the range of polls votes (not inclusive) 139 * @return the range of matching polls votes 140 * @throws SystemException if a system exception occurred 141 */ 142 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> 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 votes 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.PollsVoteModelImpl}. 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 votes 157 * @param end the upper bound of the range of polls votes (not inclusive) 158 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 159 * @return the ordered range of matching polls votes 160 * @throws SystemException if a system exception occurred 161 */ 162 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> 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 vote 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 vote 175 * @throws com.liferay.portlet.polls.NoSuchVoteException if a matching polls vote could not be found 176 * @throws SystemException if a system exception occurred 177 */ 178 public static com.liferay.portlet.polls.model.PollsVote 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.NoSuchVoteException { 183 return getPersistence().findByUuid_First(uuid, orderByComparator); 184 } 185 186 /** 187 * Returns the first polls vote 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 vote, or <code>null</code> if a matching polls vote could not be found 192 * @throws SystemException if a system exception occurred 193 */ 194 public static com.liferay.portlet.polls.model.PollsVote 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 vote 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 vote 207 * @throws com.liferay.portlet.polls.NoSuchVoteException if a matching polls vote could not be found 208 * @throws SystemException if a system exception occurred 209 */ 210 public static com.liferay.portlet.polls.model.PollsVote 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.NoSuchVoteException { 215 return getPersistence().findByUuid_Last(uuid, orderByComparator); 216 } 217 218 /** 219 * Returns the last polls vote 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 vote, or <code>null</code> if a matching polls vote could not be found 224 * @throws SystemException if a system exception occurred 225 */ 226 public static com.liferay.portlet.polls.model.PollsVote 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 votes before and after the current polls vote in the ordered set where uuid = ?. 235 * 236 * @param voteId the primary key of the current polls vote 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 vote 240 * @throws com.liferay.portlet.polls.NoSuchVoteException if a polls vote 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.PollsVote[] findByUuid_PrevAndNext( 244 long voteId, 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.NoSuchVoteException { 248 return getPersistence() 249 .findByUuid_PrevAndNext(voteId, uuid, orderByComparator); 250 } 251 252 /** 253 * Removes all the polls votes 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 votes where uuid = ?. 265 * 266 * @param uuid the uuid 267 * @return the number of matching polls votes 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 vote where uuid = ? and groupId = ? or throws a {@link com.liferay.portlet.polls.NoSuchVoteException} if it could not be found. 277 * 278 * @param uuid the uuid 279 * @param groupId the group ID 280 * @return the matching polls vote 281 * @throws com.liferay.portlet.polls.NoSuchVoteException if a matching polls vote could not be found 282 * @throws SystemException if a system exception occurred 283 */ 284 public static com.liferay.portlet.polls.model.PollsVote findByUUID_G( 285 java.lang.String uuid, long groupId) 286 throws com.liferay.portal.kernel.exception.SystemException, 287 com.liferay.portlet.polls.NoSuchVoteException { 288 return getPersistence().findByUUID_G(uuid, groupId); 289 } 290 291 /** 292 * Returns the polls vote 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 vote, or <code>null</code> if a matching polls vote could not be found 297 * @throws SystemException if a system exception occurred 298 */ 299 public static com.liferay.portlet.polls.model.PollsVote 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 vote 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 vote, or <code>null</code> if a matching polls vote could not be found 312 * @throws SystemException if a system exception occurred 313 */ 314 public static com.liferay.portlet.polls.model.PollsVote 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 vote where uuid = ? and groupId = ? from the database. 322 * 323 * @param uuid the uuid 324 * @param groupId the group ID 325 * @return the polls vote that was removed 326 * @throws SystemException if a system exception occurred 327 */ 328 public static com.liferay.portlet.polls.model.PollsVote removeByUUID_G( 329 java.lang.String uuid, long groupId) 330 throws com.liferay.portal.kernel.exception.SystemException, 331 com.liferay.portlet.polls.NoSuchVoteException { 332 return getPersistence().removeByUUID_G(uuid, groupId); 333 } 334 335 /** 336 * Returns the number of polls votes where uuid = ? and groupId = ?. 337 * 338 * @param uuid the uuid 339 * @param groupId the group ID 340 * @return the number of matching polls votes 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 votes where uuid = ? and companyId = ?. 350 * 351 * @param uuid the uuid 352 * @param companyId the company ID 353 * @return the matching polls votes 354 * @throws SystemException if a system exception occurred 355 */ 356 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> 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 votes 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.PollsVoteModelImpl}. 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 votes 372 * @param end the upper bound of the range of polls votes (not inclusive) 373 * @return the range of matching polls votes 374 * @throws SystemException if a system exception occurred 375 */ 376 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> 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 votes 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.PollsVoteModelImpl}. 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 votes 392 * @param end the upper bound of the range of polls votes (not inclusive) 393 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 394 * @return the ordered range of matching polls votes 395 * @throws SystemException if a system exception occurred 396 */ 397 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> 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 vote 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 vote 412 * @throws com.liferay.portlet.polls.NoSuchVoteException if a matching polls vote could not be found 413 * @throws SystemException if a system exception occurred 414 */ 415 public static com.liferay.portlet.polls.model.PollsVote 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.NoSuchVoteException { 420 return getPersistence() 421 .findByUuid_C_First(uuid, companyId, orderByComparator); 422 } 423 424 /** 425 * Returns the first polls vote 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 vote, or <code>null</code> if a matching polls vote could not be found 431 * @throws SystemException if a system exception occurred 432 */ 433 public static com.liferay.portlet.polls.model.PollsVote 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 vote 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 vote 448 * @throws com.liferay.portlet.polls.NoSuchVoteException if a matching polls vote could not be found 449 * @throws SystemException if a system exception occurred 450 */ 451 public static com.liferay.portlet.polls.model.PollsVote 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.NoSuchVoteException { 456 return getPersistence() 457 .findByUuid_C_Last(uuid, companyId, orderByComparator); 458 } 459 460 /** 461 * Returns the last polls vote 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 vote, or <code>null</code> if a matching polls vote could not be found 467 * @throws SystemException if a system exception occurred 468 */ 469 public static com.liferay.portlet.polls.model.PollsVote 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 votes before and after the current polls vote in the ordered set where uuid = ? and companyId = ?. 479 * 480 * @param voteId the primary key of the current polls vote 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 vote 485 * @throws com.liferay.portlet.polls.NoSuchVoteException if a polls vote 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.PollsVote[] findByUuid_C_PrevAndNext( 489 long voteId, 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.NoSuchVoteException { 493 return getPersistence() 494 .findByUuid_C_PrevAndNext(voteId, uuid, companyId, 495 orderByComparator); 496 } 497 498 /** 499 * Removes all the polls votes 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 votes where uuid = ? and companyId = ?. 512 * 513 * @param uuid the uuid 514 * @param companyId the company ID 515 * @return the number of matching polls votes 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 votes where questionId = ?. 525 * 526 * @param questionId the question ID 527 * @return the matching polls votes 528 * @throws SystemException if a system exception occurred 529 */ 530 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> 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 votes 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.PollsVoteModelImpl}. 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 votes 545 * @param end the upper bound of the range of polls votes (not inclusive) 546 * @return the range of matching polls votes 547 * @throws SystemException if a system exception occurred 548 */ 549 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> 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 votes 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.PollsVoteModelImpl}. 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 votes 564 * @param end the upper bound of the range of polls votes (not inclusive) 565 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 566 * @return the ordered range of matching polls votes 567 * @throws SystemException if a system exception occurred 568 */ 569 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> 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 vote 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 vote 583 * @throws com.liferay.portlet.polls.NoSuchVoteException if a matching polls vote could not be found 584 * @throws SystemException if a system exception occurred 585 */ 586 public static com.liferay.portlet.polls.model.PollsVote 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.NoSuchVoteException { 591 return getPersistence() 592 .findByQuestionId_First(questionId, orderByComparator); 593 } 594 595 /** 596 * Returns the first polls vote 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 vote, or <code>null</code> if a matching polls vote could not be found 601 * @throws SystemException if a system exception occurred 602 */ 603 public static com.liferay.portlet.polls.model.PollsVote 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 vote 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 vote 617 * @throws com.liferay.portlet.polls.NoSuchVoteException if a matching polls vote could not be found 618 * @throws SystemException if a system exception occurred 619 */ 620 public static com.liferay.portlet.polls.model.PollsVote 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.NoSuchVoteException { 625 return getPersistence() 626 .findByQuestionId_Last(questionId, orderByComparator); 627 } 628 629 /** 630 * Returns the last polls vote 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 vote, or <code>null</code> if a matching polls vote could not be found 635 * @throws SystemException if a system exception occurred 636 */ 637 public static com.liferay.portlet.polls.model.PollsVote 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 votes before and after the current polls vote in the ordered set where questionId = ?. 647 * 648 * @param voteId the primary key of the current polls vote 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 vote 652 * @throws com.liferay.portlet.polls.NoSuchVoteException if a polls vote 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.PollsVote[] findByQuestionId_PrevAndNext( 656 long voteId, long questionId, 657 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 658 throws com.liferay.portal.kernel.exception.SystemException, 659 com.liferay.portlet.polls.NoSuchVoteException { 660 return getPersistence() 661 .findByQuestionId_PrevAndNext(voteId, questionId, 662 orderByComparator); 663 } 664 665 /** 666 * Removes all the polls votes 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 votes where questionId = ?. 678 * 679 * @param questionId the question ID 680 * @return the number of matching polls votes 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 all the polls votes where choiceId = ?. 690 * 691 * @param choiceId the choice ID 692 * @return the matching polls votes 693 * @throws SystemException if a system exception occurred 694 */ 695 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> findByChoiceId( 696 long choiceId) 697 throws com.liferay.portal.kernel.exception.SystemException { 698 return getPersistence().findByChoiceId(choiceId); 699 } 700 701 /** 702 * Returns a range of all the polls votes where choiceId = ?. 703 * 704 * <p> 705 * 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.PollsVoteModelImpl}. 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. 706 * </p> 707 * 708 * @param choiceId the choice ID 709 * @param start the lower bound of the range of polls votes 710 * @param end the upper bound of the range of polls votes (not inclusive) 711 * @return the range of matching polls votes 712 * @throws SystemException if a system exception occurred 713 */ 714 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> findByChoiceId( 715 long choiceId, int start, int end) 716 throws com.liferay.portal.kernel.exception.SystemException { 717 return getPersistence().findByChoiceId(choiceId, start, end); 718 } 719 720 /** 721 * Returns an ordered range of all the polls votes where choiceId = ?. 722 * 723 * <p> 724 * 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.PollsVoteModelImpl}. 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. 725 * </p> 726 * 727 * @param choiceId the choice ID 728 * @param start the lower bound of the range of polls votes 729 * @param end the upper bound of the range of polls votes (not inclusive) 730 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 731 * @return the ordered range of matching polls votes 732 * @throws SystemException if a system exception occurred 733 */ 734 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> findByChoiceId( 735 long choiceId, int start, int end, 736 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 737 throws com.liferay.portal.kernel.exception.SystemException { 738 return getPersistence() 739 .findByChoiceId(choiceId, start, end, orderByComparator); 740 } 741 742 /** 743 * Returns the first polls vote in the ordered set where choiceId = ?. 744 * 745 * @param choiceId the choice ID 746 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 747 * @return the first matching polls vote 748 * @throws com.liferay.portlet.polls.NoSuchVoteException if a matching polls vote could not be found 749 * @throws SystemException if a system exception occurred 750 */ 751 public static com.liferay.portlet.polls.model.PollsVote findByChoiceId_First( 752 long choiceId, 753 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 754 throws com.liferay.portal.kernel.exception.SystemException, 755 com.liferay.portlet.polls.NoSuchVoteException { 756 return getPersistence().findByChoiceId_First(choiceId, orderByComparator); 757 } 758 759 /** 760 * Returns the first polls vote in the ordered set where choiceId = ?. 761 * 762 * @param choiceId the choice ID 763 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 764 * @return the first matching polls vote, or <code>null</code> if a matching polls vote could not be found 765 * @throws SystemException if a system exception occurred 766 */ 767 public static com.liferay.portlet.polls.model.PollsVote fetchByChoiceId_First( 768 long choiceId, 769 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 770 throws com.liferay.portal.kernel.exception.SystemException { 771 return getPersistence() 772 .fetchByChoiceId_First(choiceId, orderByComparator); 773 } 774 775 /** 776 * Returns the last polls vote in the ordered set where choiceId = ?. 777 * 778 * @param choiceId the choice ID 779 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 780 * @return the last matching polls vote 781 * @throws com.liferay.portlet.polls.NoSuchVoteException if a matching polls vote could not be found 782 * @throws SystemException if a system exception occurred 783 */ 784 public static com.liferay.portlet.polls.model.PollsVote findByChoiceId_Last( 785 long choiceId, 786 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 787 throws com.liferay.portal.kernel.exception.SystemException, 788 com.liferay.portlet.polls.NoSuchVoteException { 789 return getPersistence().findByChoiceId_Last(choiceId, orderByComparator); 790 } 791 792 /** 793 * Returns the last polls vote in the ordered set where choiceId = ?. 794 * 795 * @param choiceId the choice ID 796 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 797 * @return the last matching polls vote, or <code>null</code> if a matching polls vote could not be found 798 * @throws SystemException if a system exception occurred 799 */ 800 public static com.liferay.portlet.polls.model.PollsVote fetchByChoiceId_Last( 801 long choiceId, 802 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 803 throws com.liferay.portal.kernel.exception.SystemException { 804 return getPersistence().fetchByChoiceId_Last(choiceId, orderByComparator); 805 } 806 807 /** 808 * Returns the polls votes before and after the current polls vote in the ordered set where choiceId = ?. 809 * 810 * @param voteId the primary key of the current polls vote 811 * @param choiceId the choice ID 812 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 813 * @return the previous, current, and next polls vote 814 * @throws com.liferay.portlet.polls.NoSuchVoteException if a polls vote with the primary key could not be found 815 * @throws SystemException if a system exception occurred 816 */ 817 public static com.liferay.portlet.polls.model.PollsVote[] findByChoiceId_PrevAndNext( 818 long voteId, long choiceId, 819 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 820 throws com.liferay.portal.kernel.exception.SystemException, 821 com.liferay.portlet.polls.NoSuchVoteException { 822 return getPersistence() 823 .findByChoiceId_PrevAndNext(voteId, choiceId, 824 orderByComparator); 825 } 826 827 /** 828 * Removes all the polls votes where choiceId = ? from the database. 829 * 830 * @param choiceId the choice ID 831 * @throws SystemException if a system exception occurred 832 */ 833 public static void removeByChoiceId(long choiceId) 834 throws com.liferay.portal.kernel.exception.SystemException { 835 getPersistence().removeByChoiceId(choiceId); 836 } 837 838 /** 839 * Returns the number of polls votes where choiceId = ?. 840 * 841 * @param choiceId the choice ID 842 * @return the number of matching polls votes 843 * @throws SystemException if a system exception occurred 844 */ 845 public static int countByChoiceId(long choiceId) 846 throws com.liferay.portal.kernel.exception.SystemException { 847 return getPersistence().countByChoiceId(choiceId); 848 } 849 850 /** 851 * Returns the polls vote where questionId = ? and userId = ? or throws a {@link com.liferay.portlet.polls.NoSuchVoteException} if it could not be found. 852 * 853 * @param questionId the question ID 854 * @param userId the user ID 855 * @return the matching polls vote 856 * @throws com.liferay.portlet.polls.NoSuchVoteException if a matching polls vote could not be found 857 * @throws SystemException if a system exception occurred 858 */ 859 public static com.liferay.portlet.polls.model.PollsVote findByQ_U( 860 long questionId, long userId) 861 throws com.liferay.portal.kernel.exception.SystemException, 862 com.liferay.portlet.polls.NoSuchVoteException { 863 return getPersistence().findByQ_U(questionId, userId); 864 } 865 866 /** 867 * Returns the polls vote where questionId = ? and userId = ? or returns <code>null</code> if it could not be found. Uses the finder cache. 868 * 869 * @param questionId the question ID 870 * @param userId the user ID 871 * @return the matching polls vote, or <code>null</code> if a matching polls vote could not be found 872 * @throws SystemException if a system exception occurred 873 */ 874 public static com.liferay.portlet.polls.model.PollsVote fetchByQ_U( 875 long questionId, long userId) 876 throws com.liferay.portal.kernel.exception.SystemException { 877 return getPersistence().fetchByQ_U(questionId, userId); 878 } 879 880 /** 881 * Returns the polls vote where questionId = ? and userId = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. 882 * 883 * @param questionId the question ID 884 * @param userId the user ID 885 * @param retrieveFromCache whether to use the finder cache 886 * @return the matching polls vote, or <code>null</code> if a matching polls vote could not be found 887 * @throws SystemException if a system exception occurred 888 */ 889 public static com.liferay.portlet.polls.model.PollsVote fetchByQ_U( 890 long questionId, long userId, boolean retrieveFromCache) 891 throws com.liferay.portal.kernel.exception.SystemException { 892 return getPersistence().fetchByQ_U(questionId, userId, retrieveFromCache); 893 } 894 895 /** 896 * Removes the polls vote where questionId = ? and userId = ? from the database. 897 * 898 * @param questionId the question ID 899 * @param userId the user ID 900 * @return the polls vote that was removed 901 * @throws SystemException if a system exception occurred 902 */ 903 public static com.liferay.portlet.polls.model.PollsVote removeByQ_U( 904 long questionId, long userId) 905 throws com.liferay.portal.kernel.exception.SystemException, 906 com.liferay.portlet.polls.NoSuchVoteException { 907 return getPersistence().removeByQ_U(questionId, userId); 908 } 909 910 /** 911 * Returns the number of polls votes where questionId = ? and userId = ?. 912 * 913 * @param questionId the question ID 914 * @param userId the user ID 915 * @return the number of matching polls votes 916 * @throws SystemException if a system exception occurred 917 */ 918 public static int countByQ_U(long questionId, long userId) 919 throws com.liferay.portal.kernel.exception.SystemException { 920 return getPersistence().countByQ_U(questionId, userId); 921 } 922 923 /** 924 * Caches the polls vote in the entity cache if it is enabled. 925 * 926 * @param pollsVote the polls vote 927 */ 928 public static void cacheResult( 929 com.liferay.portlet.polls.model.PollsVote pollsVote) { 930 getPersistence().cacheResult(pollsVote); 931 } 932 933 /** 934 * Caches the polls votes in the entity cache if it is enabled. 935 * 936 * @param pollsVotes the polls votes 937 */ 938 public static void cacheResult( 939 java.util.List<com.liferay.portlet.polls.model.PollsVote> pollsVotes) { 940 getPersistence().cacheResult(pollsVotes); 941 } 942 943 /** 944 * Creates a new polls vote with the primary key. Does not add the polls vote to the database. 945 * 946 * @param voteId the primary key for the new polls vote 947 * @return the new polls vote 948 */ 949 public static com.liferay.portlet.polls.model.PollsVote create(long voteId) { 950 return getPersistence().create(voteId); 951 } 952 953 /** 954 * Removes the polls vote with the primary key from the database. Also notifies the appropriate model listeners. 955 * 956 * @param voteId the primary key of the polls vote 957 * @return the polls vote that was removed 958 * @throws com.liferay.portlet.polls.NoSuchVoteException if a polls vote with the primary key could not be found 959 * @throws SystemException if a system exception occurred 960 */ 961 public static com.liferay.portlet.polls.model.PollsVote remove(long voteId) 962 throws com.liferay.portal.kernel.exception.SystemException, 963 com.liferay.portlet.polls.NoSuchVoteException { 964 return getPersistence().remove(voteId); 965 } 966 967 public static com.liferay.portlet.polls.model.PollsVote updateImpl( 968 com.liferay.portlet.polls.model.PollsVote pollsVote) 969 throws com.liferay.portal.kernel.exception.SystemException { 970 return getPersistence().updateImpl(pollsVote); 971 } 972 973 /** 974 * Returns the polls vote with the primary key or throws a {@link com.liferay.portlet.polls.NoSuchVoteException} if it could not be found. 975 * 976 * @param voteId the primary key of the polls vote 977 * @return the polls vote 978 * @throws com.liferay.portlet.polls.NoSuchVoteException if a polls vote with the primary key could not be found 979 * @throws SystemException if a system exception occurred 980 */ 981 public static com.liferay.portlet.polls.model.PollsVote findByPrimaryKey( 982 long voteId) 983 throws com.liferay.portal.kernel.exception.SystemException, 984 com.liferay.portlet.polls.NoSuchVoteException { 985 return getPersistence().findByPrimaryKey(voteId); 986 } 987 988 /** 989 * Returns the polls vote with the primary key or returns <code>null</code> if it could not be found. 990 * 991 * @param voteId the primary key of the polls vote 992 * @return the polls vote, or <code>null</code> if a polls vote with the primary key could not be found 993 * @throws SystemException if a system exception occurred 994 */ 995 public static com.liferay.portlet.polls.model.PollsVote fetchByPrimaryKey( 996 long voteId) throws com.liferay.portal.kernel.exception.SystemException { 997 return getPersistence().fetchByPrimaryKey(voteId); 998 } 999 1000 /** 1001 * Returns all the polls votes. 1002 * 1003 * @return the polls votes 1004 * @throws SystemException if a system exception occurred 1005 */ 1006 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> findAll() 1007 throws com.liferay.portal.kernel.exception.SystemException { 1008 return getPersistence().findAll(); 1009 } 1010 1011 /** 1012 * Returns a range of all the polls votes. 1013 * 1014 * <p> 1015 * 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.PollsVoteModelImpl}. 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. 1016 * </p> 1017 * 1018 * @param start the lower bound of the range of polls votes 1019 * @param end the upper bound of the range of polls votes (not inclusive) 1020 * @return the range of polls votes 1021 * @throws SystemException if a system exception occurred 1022 */ 1023 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> findAll( 1024 int start, int end) 1025 throws com.liferay.portal.kernel.exception.SystemException { 1026 return getPersistence().findAll(start, end); 1027 } 1028 1029 /** 1030 * Returns an ordered range of all the polls votes. 1031 * 1032 * <p> 1033 * 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.PollsVoteModelImpl}. 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. 1034 * </p> 1035 * 1036 * @param start the lower bound of the range of polls votes 1037 * @param end the upper bound of the range of polls votes (not inclusive) 1038 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 1039 * @return the ordered range of polls votes 1040 * @throws SystemException if a system exception occurred 1041 */ 1042 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> findAll( 1043 int start, int end, 1044 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 1045 throws com.liferay.portal.kernel.exception.SystemException { 1046 return getPersistence().findAll(start, end, orderByComparator); 1047 } 1048 1049 /** 1050 * Removes all the polls votes from the database. 1051 * 1052 * @throws SystemException if a system exception occurred 1053 */ 1054 public static void removeAll() 1055 throws com.liferay.portal.kernel.exception.SystemException { 1056 getPersistence().removeAll(); 1057 } 1058 1059 /** 1060 * Returns the number of polls votes. 1061 * 1062 * @return the number of polls votes 1063 * @throws SystemException if a system exception occurred 1064 */ 1065 public static int countAll() 1066 throws com.liferay.portal.kernel.exception.SystemException { 1067 return getPersistence().countAll(); 1068 } 1069 1070 public static PollsVotePersistence getPersistence() { 1071 if (_persistence == null) { 1072 _persistence = (PollsVotePersistence)PortalBeanLocatorUtil.locate(PollsVotePersistence.class.getName()); 1073 1074 ReferenceRegistry.registerReference(PollsVoteUtil.class, 1075 "_persistence"); 1076 } 1077 1078 return _persistence; 1079 } 1080 1081 /** 1082 * @deprecated As of 6.2.0 1083 */ 1084 public void setPersistence(PollsVotePersistence persistence) { 1085 } 1086 1087 private static PollsVotePersistence _persistence; 1088 }