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