Liferay 6.1.2-ce-ga3

com.liferay.portlet.polls.service.persistence
Interface PollsVotePersistence

All Superinterfaces:
BasePersistence<PollsVote>

public interface PollsVotePersistence
extends BasePersistence<PollsVote>

The persistence interface for the polls vote service.

Caching information and settings can be found in portal.properties

See Also:
PollsVotePersistenceImpl, PollsVoteUtil

Method Summary
 void cacheResult(List<PollsVote> pollsVotes)
          Caches the polls votes in the entity cache if it is enabled.
 void cacheResult(PollsVote pollsVote)
          Caches the polls vote in the entity cache if it is enabled.
 int countAll()
          Returns the number of polls votes.
 int countByChoiceId(long choiceId)
          Returns the number of polls votes where choiceId = ?.
 int countByQ_U(long questionId, long userId)
          Returns the number of polls votes where questionId = ? and userId = ?.
 int countByQuestionId(long questionId)
          Returns the number of polls votes where questionId = ?.
 PollsVote create(long voteId)
          Creates a new polls vote with the primary key.
 PollsVote fetchByChoiceId_First(long choiceId, OrderByComparator orderByComparator)
          Returns the first polls vote in the ordered set where choiceId = ?.
 PollsVote fetchByChoiceId_Last(long choiceId, OrderByComparator orderByComparator)
          Returns the last polls vote in the ordered set where choiceId = ?.
 PollsVote fetchByPrimaryKey(long voteId)
          Returns the polls vote with the primary key or returns null if it could not be found.
 PollsVote fetchByQ_U(long questionId, long userId)
          Returns the polls vote where questionId = ? and userId = ? or returns null if it could not be found.
 PollsVote fetchByQ_U(long questionId, long userId, boolean retrieveFromCache)
          Returns the polls vote where questionId = ? and userId = ? or returns null if it could not be found, optionally using the finder cache.
 PollsVote fetchByQuestionId_First(long questionId, OrderByComparator orderByComparator)
          Returns the first polls vote in the ordered set where questionId = ?.
 PollsVote fetchByQuestionId_Last(long questionId, OrderByComparator orderByComparator)
          Returns the last polls vote in the ordered set where questionId = ?.
 List<PollsVote> findAll()
          Returns all the polls votes.
 List<PollsVote> findAll(int start, int end)
          Returns a range of all the polls votes.
 List<PollsVote> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the polls votes.
 PollsVote findByChoiceId_First(long choiceId, OrderByComparator orderByComparator)
          Returns the first polls vote in the ordered set where choiceId = ?.
 PollsVote findByChoiceId_Last(long choiceId, OrderByComparator orderByComparator)
          Returns the last polls vote in the ordered set where choiceId = ?.
 PollsVote[] findByChoiceId_PrevAndNext(long voteId, long choiceId, OrderByComparator orderByComparator)
          Returns the polls votes before and after the current polls vote in the ordered set where choiceId = ?.
 List<PollsVote> findByChoiceId(long choiceId)
          Returns all the polls votes where choiceId = ?.
 List<PollsVote> findByChoiceId(long choiceId, int start, int end)
          Returns a range of all the polls votes where choiceId = ?.
 List<PollsVote> findByChoiceId(long choiceId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the polls votes where choiceId = ?.
 PollsVote findByPrimaryKey(long voteId)
          Returns the polls vote with the primary key or throws a NoSuchVoteException if it could not be found.
 PollsVote findByQ_U(long questionId, long userId)
          Returns the polls vote where questionId = ? and userId = ? or throws a NoSuchVoteException if it could not be found.
 PollsVote findByQuestionId_First(long questionId, OrderByComparator orderByComparator)
          Returns the first polls vote in the ordered set where questionId = ?.
 PollsVote findByQuestionId_Last(long questionId, OrderByComparator orderByComparator)
          Returns the last polls vote in the ordered set where questionId = ?.
 PollsVote[] findByQuestionId_PrevAndNext(long voteId, long questionId, OrderByComparator orderByComparator)
          Returns the polls votes before and after the current polls vote in the ordered set where questionId = ?.
 List<PollsVote> findByQuestionId(long questionId)
          Returns all the polls votes where questionId = ?.
 List<PollsVote> findByQuestionId(long questionId, int start, int end)
          Returns a range of all the polls votes where questionId = ?.
 List<PollsVote> findByQuestionId(long questionId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the polls votes where questionId = ?.
 PollsVote remove(long voteId)
          Removes the polls vote with the primary key from the database.
 void removeAll()
          Removes all the polls votes from the database.
 void removeByChoiceId(long choiceId)
          Removes all the polls votes where choiceId = ? from the database.
 PollsVote removeByQ_U(long questionId, long userId)
          Removes the polls vote where questionId = ? and userId = ? from the database.
 void removeByQuestionId(long questionId)
          Removes all the polls votes where questionId = ? from the database.
 PollsVote updateImpl(PollsVote pollsVote, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(PollsVote pollsVote)
Caches the polls vote in the entity cache if it is enabled.

Parameters:
pollsVote - the polls vote

cacheResult

void cacheResult(List<PollsVote> pollsVotes)
Caches the polls votes in the entity cache if it is enabled.

Parameters:
pollsVotes - the polls votes

create

PollsVote create(long voteId)
Creates a new polls vote with the primary key. Does not add the polls vote to the database.

Parameters:
voteId - the primary key for the new polls vote
Returns:
the new polls vote

remove

PollsVote remove(long voteId)
                 throws SystemException,
                        NoSuchVoteException
Removes the polls vote with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
voteId - the primary key of the polls vote
Returns:
the polls vote that was removed
Throws:
NoSuchVoteException - if a polls vote with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

PollsVote updateImpl(PollsVote pollsVote,
                     boolean merge)
                     throws SystemException
Throws:
SystemException

findByPrimaryKey

PollsVote findByPrimaryKey(long voteId)
                           throws SystemException,
                                  NoSuchVoteException
Returns the polls vote with the primary key or throws a NoSuchVoteException if it could not be found.

Parameters:
voteId - the primary key of the polls vote
Returns:
the polls vote
Throws:
NoSuchVoteException - if a polls vote with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

PollsVote fetchByPrimaryKey(long voteId)
                            throws SystemException
Returns the polls vote with the primary key or returns null if it could not be found.

Parameters:
voteId - the primary key of the polls vote
Returns:
the polls vote, or null if a polls vote with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByQuestionId

List<PollsVote> findByQuestionId(long questionId)
                                 throws SystemException
Returns all the polls votes where questionId = ?.

Parameters:
questionId - the question ID
Returns:
the matching polls votes
Throws:
SystemException - if a system exception occurred

findByQuestionId

List<PollsVote> findByQuestionId(long questionId,
                                 int start,
                                 int end)
                                 throws SystemException
Returns a range of all the polls votes where questionId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
questionId - the question ID
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
Returns:
the range of matching polls votes
Throws:
SystemException - if a system exception occurred

findByQuestionId

List<PollsVote> findByQuestionId(long questionId,
                                 int start,
                                 int end,
                                 OrderByComparator orderByComparator)
                                 throws SystemException
Returns an ordered range of all the polls votes where questionId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
questionId - the question ID
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching polls votes
Throws:
SystemException - if a system exception occurred

findByQuestionId_First

PollsVote findByQuestionId_First(long questionId,
                                 OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchVoteException
Returns the first polls vote in the ordered set where questionId = ?.

Parameters:
questionId - the question ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching polls vote
Throws:
NoSuchVoteException - if a matching polls vote could not be found
SystemException - if a system exception occurred

fetchByQuestionId_First

PollsVote fetchByQuestionId_First(long questionId,
                                  OrderByComparator orderByComparator)
                                  throws SystemException
Returns the first polls vote in the ordered set where questionId = ?.

Parameters:
questionId - the question ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching polls vote, or null if a matching polls vote could not be found
Throws:
SystemException - if a system exception occurred

findByQuestionId_Last

PollsVote findByQuestionId_Last(long questionId,
                                OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchVoteException
Returns the last polls vote in the ordered set where questionId = ?.

Parameters:
questionId - the question ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching polls vote
Throws:
NoSuchVoteException - if a matching polls vote could not be found
SystemException - if a system exception occurred

fetchByQuestionId_Last

PollsVote fetchByQuestionId_Last(long questionId,
                                 OrderByComparator orderByComparator)
                                 throws SystemException
Returns the last polls vote in the ordered set where questionId = ?.

Parameters:
questionId - the question ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching polls vote, or null if a matching polls vote could not be found
Throws:
SystemException - if a system exception occurred

findByQuestionId_PrevAndNext

PollsVote[] findByQuestionId_PrevAndNext(long voteId,
                                         long questionId,
                                         OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchVoteException
Returns the polls votes before and after the current polls vote in the ordered set where questionId = ?.

Parameters:
voteId - the primary key of the current polls vote
questionId - the question ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next polls vote
Throws:
NoSuchVoteException - if a polls vote with the primary key could not be found
SystemException - if a system exception occurred

findByChoiceId

List<PollsVote> findByChoiceId(long choiceId)
                               throws SystemException
Returns all the polls votes where choiceId = ?.

Parameters:
choiceId - the choice ID
Returns:
the matching polls votes
Throws:
SystemException - if a system exception occurred

findByChoiceId

List<PollsVote> findByChoiceId(long choiceId,
                               int start,
                               int end)
                               throws SystemException
Returns a range of all the polls votes where choiceId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
choiceId - the choice ID
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
Returns:
the range of matching polls votes
Throws:
SystemException - if a system exception occurred

findByChoiceId

List<PollsVote> findByChoiceId(long choiceId,
                               int start,
                               int end,
                               OrderByComparator orderByComparator)
                               throws SystemException
Returns an ordered range of all the polls votes where choiceId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
choiceId - the choice ID
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching polls votes
Throws:
SystemException - if a system exception occurred

findByChoiceId_First

PollsVote findByChoiceId_First(long choiceId,
                               OrderByComparator orderByComparator)
                               throws SystemException,
                                      NoSuchVoteException
Returns the first polls vote in the ordered set where choiceId = ?.

Parameters:
choiceId - the choice ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching polls vote
Throws:
NoSuchVoteException - if a matching polls vote could not be found
SystemException - if a system exception occurred

fetchByChoiceId_First

PollsVote fetchByChoiceId_First(long choiceId,
                                OrderByComparator orderByComparator)
                                throws SystemException
Returns the first polls vote in the ordered set where choiceId = ?.

Parameters:
choiceId - the choice ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching polls vote, or null if a matching polls vote could not be found
Throws:
SystemException - if a system exception occurred

findByChoiceId_Last

PollsVote findByChoiceId_Last(long choiceId,
                              OrderByComparator orderByComparator)
                              throws SystemException,
                                     NoSuchVoteException
Returns the last polls vote in the ordered set where choiceId = ?.

Parameters:
choiceId - the choice ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching polls vote
Throws:
NoSuchVoteException - if a matching polls vote could not be found
SystemException - if a system exception occurred

fetchByChoiceId_Last

PollsVote fetchByChoiceId_Last(long choiceId,
                               OrderByComparator orderByComparator)
                               throws SystemException
Returns the last polls vote in the ordered set where choiceId = ?.

Parameters:
choiceId - the choice ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching polls vote, or null if a matching polls vote could not be found
Throws:
SystemException - if a system exception occurred

findByChoiceId_PrevAndNext

PollsVote[] findByChoiceId_PrevAndNext(long voteId,
                                       long choiceId,
                                       OrderByComparator orderByComparator)
                                       throws SystemException,
                                              NoSuchVoteException
Returns the polls votes before and after the current polls vote in the ordered set where choiceId = ?.

Parameters:
voteId - the primary key of the current polls vote
choiceId - the choice ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next polls vote
Throws:
NoSuchVoteException - if a polls vote with the primary key could not be found
SystemException - if a system exception occurred

findByQ_U

PollsVote findByQ_U(long questionId,
                    long userId)
                    throws SystemException,
                           NoSuchVoteException
Returns the polls vote where questionId = ? and userId = ? or throws a NoSuchVoteException if it could not be found.

Parameters:
questionId - the question ID
userId - the user ID
Returns:
the matching polls vote
Throws:
NoSuchVoteException - if a matching polls vote could not be found
SystemException - if a system exception occurred

fetchByQ_U

PollsVote fetchByQ_U(long questionId,
                     long userId)
                     throws SystemException
Returns the polls vote where questionId = ? and userId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
questionId - the question ID
userId - the user ID
Returns:
the matching polls vote, or null if a matching polls vote could not be found
Throws:
SystemException - if a system exception occurred

fetchByQ_U

PollsVote fetchByQ_U(long questionId,
                     long userId,
                     boolean retrieveFromCache)
                     throws SystemException
Returns the polls vote where questionId = ? and userId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
questionId - the question ID
userId - the user ID
retrieveFromCache - whether to use the finder cache
Returns:
the matching polls vote, or null if a matching polls vote could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<PollsVote> findAll()
                        throws SystemException
Returns all the polls votes.

Returns:
the polls votes
Throws:
SystemException - if a system exception occurred

findAll

List<PollsVote> findAll(int start,
                        int end)
                        throws SystemException
Returns a range of all the polls votes.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
Returns:
the range of polls votes
Throws:
SystemException - if a system exception occurred

findAll

List<PollsVote> findAll(int start,
                        int end,
                        OrderByComparator orderByComparator)
                        throws SystemException
Returns an ordered range of all the polls votes.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of polls votes
Throws:
SystemException - if a system exception occurred

removeByQuestionId

void removeByQuestionId(long questionId)
                        throws SystemException
Removes all the polls votes where questionId = ? from the database.

Parameters:
questionId - the question ID
Throws:
SystemException - if a system exception occurred

removeByChoiceId

void removeByChoiceId(long choiceId)
                      throws SystemException
Removes all the polls votes where choiceId = ? from the database.

Parameters:
choiceId - the choice ID
Throws:
SystemException - if a system exception occurred

removeByQ_U

PollsVote removeByQ_U(long questionId,
                      long userId)
                      throws SystemException,
                             NoSuchVoteException
Removes the polls vote where questionId = ? and userId = ? from the database.

Parameters:
questionId - the question ID
userId - the user ID
Returns:
the polls vote that was removed
Throws:
SystemException - if a system exception occurred
NoSuchVoteException

removeAll

void removeAll()
               throws SystemException
Removes all the polls votes from the database.

Throws:
SystemException - if a system exception occurred

countByQuestionId

int countByQuestionId(long questionId)
                      throws SystemException
Returns the number of polls votes where questionId = ?.

Parameters:
questionId - the question ID
Returns:
the number of matching polls votes
Throws:
SystemException - if a system exception occurred

countByChoiceId

int countByChoiceId(long choiceId)
                    throws SystemException
Returns the number of polls votes where choiceId = ?.

Parameters:
choiceId - the choice ID
Returns:
the number of matching polls votes
Throws:
SystemException - if a system exception occurred

countByQ_U

int countByQ_U(long questionId,
               long userId)
               throws SystemException
Returns the number of polls votes where questionId = ? and userId = ?.

Parameters:
questionId - the question ID
userId - the user ID
Returns:
the number of matching polls votes
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Returns the number of polls votes.

Returns:
the number of polls votes
Throws:
SystemException - if a system exception occurred

Liferay 6.1.2-ce-ga3