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.asset.service.persistence;
016    
017    import com.liferay.portal.service.persistence.BasePersistence;
018    
019    import com.liferay.portlet.asset.model.AssetVocabulary;
020    
021    /**
022     * The persistence interface for the asset vocabulary 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 AssetVocabularyPersistenceImpl
030     * @see AssetVocabularyUtil
031     * @generated
032     */
033    public interface AssetVocabularyPersistence extends BasePersistence<AssetVocabulary> {
034            /*
035             * NOTE FOR DEVELOPERS:
036             *
037             * Never modify or reference this interface directly. Always use {@link AssetVocabularyUtil} to access the asset vocabulary persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this interface.
038             */
039    
040            /**
041            * Returns all the asset vocabularies where uuid = &#63;.
042            *
043            * @param uuid the uuid
044            * @return the matching asset vocabularies
045            * @throws SystemException if a system exception occurred
046            */
047            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByUuid(
048                    java.lang.String uuid)
049                    throws com.liferay.portal.kernel.exception.SystemException;
050    
051            /**
052            * Returns a range of all the asset vocabularies where uuid = &#63;.
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.asset.model.impl.AssetVocabularyModelImpl}. 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 asset vocabularies
060            * @param end the upper bound of the range of asset vocabularies (not inclusive)
061            * @return the range of matching asset vocabularies
062            * @throws SystemException if a system exception occurred
063            */
064            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> 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 asset vocabularies where uuid = &#63;.
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.asset.model.impl.AssetVocabularyModelImpl}. 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 asset vocabularies
077            * @param end the upper bound of the range of asset vocabularies (not inclusive)
078            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
079            * @return the ordered range of matching asset vocabularies
080            * @throws SystemException if a system exception occurred
081            */
082            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> 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 asset vocabulary in the ordered set where uuid = &#63;.
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 asset vocabulary
093            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
094            * @throws SystemException if a system exception occurred
095            */
096            public com.liferay.portlet.asset.model.AssetVocabulary 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.asset.NoSuchVocabularyException;
101    
102            /**
103            * Returns the first asset vocabulary in the ordered set where uuid = &#63;.
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 asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
108            * @throws SystemException if a system exception occurred
109            */
110            public com.liferay.portlet.asset.model.AssetVocabulary 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 asset vocabulary in the ordered set where uuid = &#63;.
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 asset vocabulary
121            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
122            * @throws SystemException if a system exception occurred
123            */
124            public com.liferay.portlet.asset.model.AssetVocabulary 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.asset.NoSuchVocabularyException;
129    
130            /**
131            * Returns the last asset vocabulary in the ordered set where uuid = &#63;.
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 asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
136            * @throws SystemException if a system exception occurred
137            */
138            public com.liferay.portlet.asset.model.AssetVocabulary 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 asset vocabularies before and after the current asset vocabulary in the ordered set where uuid = &#63;.
145            *
146            * @param vocabularyId the primary key of the current asset vocabulary
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 asset vocabulary
150            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found
151            * @throws SystemException if a system exception occurred
152            */
153            public com.liferay.portlet.asset.model.AssetVocabulary[] findByUuid_PrevAndNext(
154                    long vocabularyId, java.lang.String uuid,
155                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
156                    throws com.liferay.portal.kernel.exception.SystemException,
157                            com.liferay.portlet.asset.NoSuchVocabularyException;
158    
159            /**
160            * Removes all the asset vocabularies where uuid = &#63; 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 asset vocabularies where uuid = &#63;.
170            *
171            * @param uuid the uuid
172            * @return the number of matching asset vocabularies
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 asset vocabulary where uuid = &#63; and groupId = &#63; or throws a {@link com.liferay.portlet.asset.NoSuchVocabularyException} if it could not be found.
180            *
181            * @param uuid the uuid
182            * @param groupId the group ID
183            * @return the matching asset vocabulary
184            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
185            * @throws SystemException if a system exception occurred
186            */
187            public com.liferay.portlet.asset.model.AssetVocabulary findByUUID_G(
188                    java.lang.String uuid, long groupId)
189                    throws com.liferay.portal.kernel.exception.SystemException,
190                            com.liferay.portlet.asset.NoSuchVocabularyException;
191    
192            /**
193            * Returns the asset vocabulary where uuid = &#63; and groupId = &#63; 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 asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
198            * @throws SystemException if a system exception occurred
199            */
200            public com.liferay.portlet.asset.model.AssetVocabulary fetchByUUID_G(
201                    java.lang.String uuid, long groupId)
202                    throws com.liferay.portal.kernel.exception.SystemException;
203    
204            /**
205            * Returns the asset vocabulary where uuid = &#63; and groupId = &#63; 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 asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
211            * @throws SystemException if a system exception occurred
212            */
213            public com.liferay.portlet.asset.model.AssetVocabulary fetchByUUID_G(
214                    java.lang.String uuid, long groupId, boolean retrieveFromCache)
215                    throws com.liferay.portal.kernel.exception.SystemException;
216    
217            /**
218            * Removes the asset vocabulary where uuid = &#63; and groupId = &#63; from the database.
219            *
220            * @param uuid the uuid
221            * @param groupId the group ID
222            * @return the asset vocabulary that was removed
223            * @throws SystemException if a system exception occurred
224            */
225            public com.liferay.portlet.asset.model.AssetVocabulary removeByUUID_G(
226                    java.lang.String uuid, long groupId)
227                    throws com.liferay.portal.kernel.exception.SystemException,
228                            com.liferay.portlet.asset.NoSuchVocabularyException;
229    
230            /**
231            * Returns the number of asset vocabularies where uuid = &#63; and groupId = &#63;.
232            *
233            * @param uuid the uuid
234            * @param groupId the group ID
235            * @return the number of matching asset vocabularies
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 asset vocabularies where uuid = &#63; and companyId = &#63;.
243            *
244            * @param uuid the uuid
245            * @param companyId the company ID
246            * @return the matching asset vocabularies
247            * @throws SystemException if a system exception occurred
248            */
249            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> 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 asset vocabularies where uuid = &#63; and companyId = &#63;.
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.asset.model.impl.AssetVocabularyModelImpl}. 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 asset vocabularies
263            * @param end the upper bound of the range of asset vocabularies (not inclusive)
264            * @return the range of matching asset vocabularies
265            * @throws SystemException if a system exception occurred
266            */
267            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> 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 asset vocabularies where uuid = &#63; and companyId = &#63;.
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.asset.model.impl.AssetVocabularyModelImpl}. 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 asset vocabularies
281            * @param end the upper bound of the range of asset vocabularies (not inclusive)
282            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
283            * @return the ordered range of matching asset vocabularies
284            * @throws SystemException if a system exception occurred
285            */
286            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> 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 asset vocabulary in the ordered set where uuid = &#63; and companyId = &#63;.
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 asset vocabulary
298            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
299            * @throws SystemException if a system exception occurred
300            */
301            public com.liferay.portlet.asset.model.AssetVocabulary 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.asset.NoSuchVocabularyException;
306    
307            /**
308            * Returns the first asset vocabulary in the ordered set where uuid = &#63; and companyId = &#63;.
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 asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
314            * @throws SystemException if a system exception occurred
315            */
316            public com.liferay.portlet.asset.model.AssetVocabulary 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 asset vocabulary in the ordered set where uuid = &#63; and companyId = &#63;.
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 asset vocabulary
328            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
329            * @throws SystemException if a system exception occurred
330            */
331            public com.liferay.portlet.asset.model.AssetVocabulary 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.asset.NoSuchVocabularyException;
336    
337            /**
338            * Returns the last asset vocabulary in the ordered set where uuid = &#63; and companyId = &#63;.
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 asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
344            * @throws SystemException if a system exception occurred
345            */
346            public com.liferay.portlet.asset.model.AssetVocabulary 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 asset vocabularies before and after the current asset vocabulary in the ordered set where uuid = &#63; and companyId = &#63;.
353            *
354            * @param vocabularyId the primary key of the current asset vocabulary
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 asset vocabulary
359            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found
360            * @throws SystemException if a system exception occurred
361            */
362            public com.liferay.portlet.asset.model.AssetVocabulary[] findByUuid_C_PrevAndNext(
363                    long vocabularyId, 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.asset.NoSuchVocabularyException;
367    
368            /**
369            * Removes all the asset vocabularies where uuid = &#63; and companyId = &#63; 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 asset vocabularies where uuid = &#63; and companyId = &#63;.
380            *
381            * @param uuid the uuid
382            * @param companyId the company ID
383            * @return the number of matching asset vocabularies
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 asset vocabularies where groupId = &#63;.
391            *
392            * @param groupId the group ID
393            * @return the matching asset vocabularies
394            * @throws SystemException if a system exception occurred
395            */
396            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByGroupId(
397                    long groupId)
398                    throws com.liferay.portal.kernel.exception.SystemException;
399    
400            /**
401            * Returns a range of all the asset vocabularies where groupId = &#63;.
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.asset.model.impl.AssetVocabularyModelImpl}. 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 groupId the group ID
408            * @param start the lower bound of the range of asset vocabularies
409            * @param end the upper bound of the range of asset vocabularies (not inclusive)
410            * @return the range of matching asset vocabularies
411            * @throws SystemException if a system exception occurred
412            */
413            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByGroupId(
414                    long groupId, int start, int end)
415                    throws com.liferay.portal.kernel.exception.SystemException;
416    
417            /**
418            * Returns an ordered range of all the asset vocabularies where groupId = &#63;.
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.asset.model.impl.AssetVocabularyModelImpl}. 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 groupId the group ID
425            * @param start the lower bound of the range of asset vocabularies
426            * @param end the upper bound of the range of asset vocabularies (not inclusive)
427            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
428            * @return the ordered range of matching asset vocabularies
429            * @throws SystemException if a system exception occurred
430            */
431            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByGroupId(
432                    long groupId, 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 asset vocabulary in the ordered set where groupId = &#63;.
438            *
439            * @param groupId the group ID
440            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
441            * @return the first matching asset vocabulary
442            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
443            * @throws SystemException if a system exception occurred
444            */
445            public com.liferay.portlet.asset.model.AssetVocabulary findByGroupId_First(
446                    long groupId,
447                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
448                    throws com.liferay.portal.kernel.exception.SystemException,
449                            com.liferay.portlet.asset.NoSuchVocabularyException;
450    
451            /**
452            * Returns the first asset vocabulary in the ordered set where groupId = &#63;.
453            *
454            * @param groupId the group ID
455            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
456            * @return the first matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
457            * @throws SystemException if a system exception occurred
458            */
459            public com.liferay.portlet.asset.model.AssetVocabulary fetchByGroupId_First(
460                    long groupId,
461                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
462                    throws com.liferay.portal.kernel.exception.SystemException;
463    
464            /**
465            * Returns the last asset vocabulary in the ordered set where groupId = &#63;.
466            *
467            * @param groupId the group ID
468            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
469            * @return the last matching asset vocabulary
470            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
471            * @throws SystemException if a system exception occurred
472            */
473            public com.liferay.portlet.asset.model.AssetVocabulary findByGroupId_Last(
474                    long groupId,
475                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
476                    throws com.liferay.portal.kernel.exception.SystemException,
477                            com.liferay.portlet.asset.NoSuchVocabularyException;
478    
479            /**
480            * Returns the last asset vocabulary in the ordered set where groupId = &#63;.
481            *
482            * @param groupId the group ID
483            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
484            * @return the last matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
485            * @throws SystemException if a system exception occurred
486            */
487            public com.liferay.portlet.asset.model.AssetVocabulary fetchByGroupId_Last(
488                    long groupId,
489                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
490                    throws com.liferay.portal.kernel.exception.SystemException;
491    
492            /**
493            * Returns the asset vocabularies before and after the current asset vocabulary in the ordered set where groupId = &#63;.
494            *
495            * @param vocabularyId the primary key of the current asset vocabulary
496            * @param groupId the group ID
497            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
498            * @return the previous, current, and next asset vocabulary
499            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found
500            * @throws SystemException if a system exception occurred
501            */
502            public com.liferay.portlet.asset.model.AssetVocabulary[] findByGroupId_PrevAndNext(
503                    long vocabularyId, long groupId,
504                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
505                    throws com.liferay.portal.kernel.exception.SystemException,
506                            com.liferay.portlet.asset.NoSuchVocabularyException;
507    
508            /**
509            * Returns all the asset vocabularies that the user has permission to view where groupId = &#63;.
510            *
511            * @param groupId the group ID
512            * @return the matching asset vocabularies that the user has permission to view
513            * @throws SystemException if a system exception occurred
514            */
515            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByGroupId(
516                    long groupId)
517                    throws com.liferay.portal.kernel.exception.SystemException;
518    
519            /**
520            * Returns a range of all the asset vocabularies that the user has permission to view where groupId = &#63;.
521            *
522            * <p>
523            * 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.asset.model.impl.AssetVocabularyModelImpl}. 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.
524            * </p>
525            *
526            * @param groupId the group ID
527            * @param start the lower bound of the range of asset vocabularies
528            * @param end the upper bound of the range of asset vocabularies (not inclusive)
529            * @return the range of matching asset vocabularies that the user has permission to view
530            * @throws SystemException if a system exception occurred
531            */
532            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByGroupId(
533                    long groupId, int start, int end)
534                    throws com.liferay.portal.kernel.exception.SystemException;
535    
536            /**
537            * Returns an ordered range of all the asset vocabularies that the user has permissions to view where groupId = &#63;.
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.asset.model.impl.AssetVocabularyModelImpl}. 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 groupId the group ID
544            * @param start the lower bound of the range of asset vocabularies
545            * @param end the upper bound of the range of asset vocabularies (not inclusive)
546            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
547            * @return the ordered range of matching asset vocabularies that the user has permission to view
548            * @throws SystemException if a system exception occurred
549            */
550            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByGroupId(
551                    long groupId, int start, int end,
552                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
553                    throws com.liferay.portal.kernel.exception.SystemException;
554    
555            /**
556            * Returns the asset vocabularies before and after the current asset vocabulary in the ordered set of asset vocabularies that the user has permission to view where groupId = &#63;.
557            *
558            * @param vocabularyId the primary key of the current asset vocabulary
559            * @param groupId the group ID
560            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
561            * @return the previous, current, and next asset vocabulary
562            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found
563            * @throws SystemException if a system exception occurred
564            */
565            public com.liferay.portlet.asset.model.AssetVocabulary[] filterFindByGroupId_PrevAndNext(
566                    long vocabularyId, long groupId,
567                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
568                    throws com.liferay.portal.kernel.exception.SystemException,
569                            com.liferay.portlet.asset.NoSuchVocabularyException;
570    
571            /**
572            * Removes all the asset vocabularies where groupId = &#63; from the database.
573            *
574            * @param groupId the group ID
575            * @throws SystemException if a system exception occurred
576            */
577            public void removeByGroupId(long groupId)
578                    throws com.liferay.portal.kernel.exception.SystemException;
579    
580            /**
581            * Returns the number of asset vocabularies where groupId = &#63;.
582            *
583            * @param groupId the group ID
584            * @return the number of matching asset vocabularies
585            * @throws SystemException if a system exception occurred
586            */
587            public int countByGroupId(long groupId)
588                    throws com.liferay.portal.kernel.exception.SystemException;
589    
590            /**
591            * Returns the number of asset vocabularies that the user has permission to view where groupId = &#63;.
592            *
593            * @param groupId the group ID
594            * @return the number of matching asset vocabularies that the user has permission to view
595            * @throws SystemException if a system exception occurred
596            */
597            public int filterCountByGroupId(long groupId)
598                    throws com.liferay.portal.kernel.exception.SystemException;
599    
600            /**
601            * Returns all the asset vocabularies where companyId = &#63;.
602            *
603            * @param companyId the company ID
604            * @return the matching asset vocabularies
605            * @throws SystemException if a system exception occurred
606            */
607            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByCompanyId(
608                    long companyId)
609                    throws com.liferay.portal.kernel.exception.SystemException;
610    
611            /**
612            * Returns a range of all the asset vocabularies where companyId = &#63;.
613            *
614            * <p>
615            * 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.asset.model.impl.AssetVocabularyModelImpl}. 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.
616            * </p>
617            *
618            * @param companyId the company ID
619            * @param start the lower bound of the range of asset vocabularies
620            * @param end the upper bound of the range of asset vocabularies (not inclusive)
621            * @return the range of matching asset vocabularies
622            * @throws SystemException if a system exception occurred
623            */
624            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByCompanyId(
625                    long companyId, int start, int end)
626                    throws com.liferay.portal.kernel.exception.SystemException;
627    
628            /**
629            * Returns an ordered range of all the asset vocabularies where companyId = &#63;.
630            *
631            * <p>
632            * 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.asset.model.impl.AssetVocabularyModelImpl}. 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.
633            * </p>
634            *
635            * @param companyId the company ID
636            * @param start the lower bound of the range of asset vocabularies
637            * @param end the upper bound of the range of asset vocabularies (not inclusive)
638            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
639            * @return the ordered range of matching asset vocabularies
640            * @throws SystemException if a system exception occurred
641            */
642            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByCompanyId(
643                    long companyId, int start, int end,
644                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
645                    throws com.liferay.portal.kernel.exception.SystemException;
646    
647            /**
648            * Returns the first asset vocabulary in the ordered set where companyId = &#63;.
649            *
650            * @param companyId the company ID
651            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
652            * @return the first matching asset vocabulary
653            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
654            * @throws SystemException if a system exception occurred
655            */
656            public com.liferay.portlet.asset.model.AssetVocabulary findByCompanyId_First(
657                    long companyId,
658                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
659                    throws com.liferay.portal.kernel.exception.SystemException,
660                            com.liferay.portlet.asset.NoSuchVocabularyException;
661    
662            /**
663            * Returns the first asset vocabulary in the ordered set where companyId = &#63;.
664            *
665            * @param companyId the company ID
666            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
667            * @return the first matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
668            * @throws SystemException if a system exception occurred
669            */
670            public com.liferay.portlet.asset.model.AssetVocabulary fetchByCompanyId_First(
671                    long companyId,
672                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
673                    throws com.liferay.portal.kernel.exception.SystemException;
674    
675            /**
676            * Returns the last asset vocabulary in the ordered set where companyId = &#63;.
677            *
678            * @param companyId the company ID
679            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
680            * @return the last matching asset vocabulary
681            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
682            * @throws SystemException if a system exception occurred
683            */
684            public com.liferay.portlet.asset.model.AssetVocabulary findByCompanyId_Last(
685                    long companyId,
686                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
687                    throws com.liferay.portal.kernel.exception.SystemException,
688                            com.liferay.portlet.asset.NoSuchVocabularyException;
689    
690            /**
691            * Returns the last asset vocabulary in the ordered set where companyId = &#63;.
692            *
693            * @param companyId the company ID
694            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
695            * @return the last matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
696            * @throws SystemException if a system exception occurred
697            */
698            public com.liferay.portlet.asset.model.AssetVocabulary fetchByCompanyId_Last(
699                    long companyId,
700                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
701                    throws com.liferay.portal.kernel.exception.SystemException;
702    
703            /**
704            * Returns the asset vocabularies before and after the current asset vocabulary in the ordered set where companyId = &#63;.
705            *
706            * @param vocabularyId the primary key of the current asset vocabulary
707            * @param companyId the company ID
708            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
709            * @return the previous, current, and next asset vocabulary
710            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found
711            * @throws SystemException if a system exception occurred
712            */
713            public com.liferay.portlet.asset.model.AssetVocabulary[] findByCompanyId_PrevAndNext(
714                    long vocabularyId, long companyId,
715                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
716                    throws com.liferay.portal.kernel.exception.SystemException,
717                            com.liferay.portlet.asset.NoSuchVocabularyException;
718    
719            /**
720            * Removes all the asset vocabularies where companyId = &#63; from the database.
721            *
722            * @param companyId the company ID
723            * @throws SystemException if a system exception occurred
724            */
725            public void removeByCompanyId(long companyId)
726                    throws com.liferay.portal.kernel.exception.SystemException;
727    
728            /**
729            * Returns the number of asset vocabularies where companyId = &#63;.
730            *
731            * @param companyId the company ID
732            * @return the number of matching asset vocabularies
733            * @throws SystemException if a system exception occurred
734            */
735            public int countByCompanyId(long companyId)
736                    throws com.liferay.portal.kernel.exception.SystemException;
737    
738            /**
739            * Returns the asset vocabulary where groupId = &#63; and name = &#63; or throws a {@link com.liferay.portlet.asset.NoSuchVocabularyException} if it could not be found.
740            *
741            * @param groupId the group ID
742            * @param name the name
743            * @return the matching asset vocabulary
744            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
745            * @throws SystemException if a system exception occurred
746            */
747            public com.liferay.portlet.asset.model.AssetVocabulary findByG_N(
748                    long groupId, java.lang.String name)
749                    throws com.liferay.portal.kernel.exception.SystemException,
750                            com.liferay.portlet.asset.NoSuchVocabularyException;
751    
752            /**
753            * Returns the asset vocabulary where groupId = &#63; and name = &#63; or returns <code>null</code> if it could not be found. Uses the finder cache.
754            *
755            * @param groupId the group ID
756            * @param name the name
757            * @return the matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
758            * @throws SystemException if a system exception occurred
759            */
760            public com.liferay.portlet.asset.model.AssetVocabulary fetchByG_N(
761                    long groupId, java.lang.String name)
762                    throws com.liferay.portal.kernel.exception.SystemException;
763    
764            /**
765            * Returns the asset vocabulary where groupId = &#63; and name = &#63; or returns <code>null</code> if it could not be found, optionally using the finder cache.
766            *
767            * @param groupId the group ID
768            * @param name the name
769            * @param retrieveFromCache whether to use the finder cache
770            * @return the matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
771            * @throws SystemException if a system exception occurred
772            */
773            public com.liferay.portlet.asset.model.AssetVocabulary fetchByG_N(
774                    long groupId, java.lang.String name, boolean retrieveFromCache)
775                    throws com.liferay.portal.kernel.exception.SystemException;
776    
777            /**
778            * Removes the asset vocabulary where groupId = &#63; and name = &#63; from the database.
779            *
780            * @param groupId the group ID
781            * @param name the name
782            * @return the asset vocabulary that was removed
783            * @throws SystemException if a system exception occurred
784            */
785            public com.liferay.portlet.asset.model.AssetVocabulary removeByG_N(
786                    long groupId, java.lang.String name)
787                    throws com.liferay.portal.kernel.exception.SystemException,
788                            com.liferay.portlet.asset.NoSuchVocabularyException;
789    
790            /**
791            * Returns the number of asset vocabularies where groupId = &#63; and name = &#63;.
792            *
793            * @param groupId the group ID
794            * @param name the name
795            * @return the number of matching asset vocabularies
796            * @throws SystemException if a system exception occurred
797            */
798            public int countByG_N(long groupId, java.lang.String name)
799                    throws com.liferay.portal.kernel.exception.SystemException;
800    
801            /**
802            * Returns all the asset vocabularies where groupId = &#63; and name LIKE &#63;.
803            *
804            * @param groupId the group ID
805            * @param name the name
806            * @return the matching asset vocabularies
807            * @throws SystemException if a system exception occurred
808            */
809            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByG_LikeN(
810                    long groupId, java.lang.String name)
811                    throws com.liferay.portal.kernel.exception.SystemException;
812    
813            /**
814            * Returns a range of all the asset vocabularies where groupId = &#63; and name LIKE &#63;.
815            *
816            * <p>
817            * 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.asset.model.impl.AssetVocabularyModelImpl}. 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.
818            * </p>
819            *
820            * @param groupId the group ID
821            * @param name the name
822            * @param start the lower bound of the range of asset vocabularies
823            * @param end the upper bound of the range of asset vocabularies (not inclusive)
824            * @return the range of matching asset vocabularies
825            * @throws SystemException if a system exception occurred
826            */
827            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByG_LikeN(
828                    long groupId, java.lang.String name, int start, int end)
829                    throws com.liferay.portal.kernel.exception.SystemException;
830    
831            /**
832            * Returns an ordered range of all the asset vocabularies where groupId = &#63; and name LIKE &#63;.
833            *
834            * <p>
835            * 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.asset.model.impl.AssetVocabularyModelImpl}. 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.
836            * </p>
837            *
838            * @param groupId the group ID
839            * @param name the name
840            * @param start the lower bound of the range of asset vocabularies
841            * @param end the upper bound of the range of asset vocabularies (not inclusive)
842            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
843            * @return the ordered range of matching asset vocabularies
844            * @throws SystemException if a system exception occurred
845            */
846            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByG_LikeN(
847                    long groupId, java.lang.String name, int start, int end,
848                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
849                    throws com.liferay.portal.kernel.exception.SystemException;
850    
851            /**
852            * Returns the first asset vocabulary in the ordered set where groupId = &#63; and name LIKE &#63;.
853            *
854            * @param groupId the group ID
855            * @param name the name
856            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
857            * @return the first matching asset vocabulary
858            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
859            * @throws SystemException if a system exception occurred
860            */
861            public com.liferay.portlet.asset.model.AssetVocabulary findByG_LikeN_First(
862                    long groupId, java.lang.String name,
863                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
864                    throws com.liferay.portal.kernel.exception.SystemException,
865                            com.liferay.portlet.asset.NoSuchVocabularyException;
866    
867            /**
868            * Returns the first asset vocabulary in the ordered set where groupId = &#63; and name LIKE &#63;.
869            *
870            * @param groupId the group ID
871            * @param name the name
872            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
873            * @return the first matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
874            * @throws SystemException if a system exception occurred
875            */
876            public com.liferay.portlet.asset.model.AssetVocabulary fetchByG_LikeN_First(
877                    long groupId, java.lang.String name,
878                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
879                    throws com.liferay.portal.kernel.exception.SystemException;
880    
881            /**
882            * Returns the last asset vocabulary in the ordered set where groupId = &#63; and name LIKE &#63;.
883            *
884            * @param groupId the group ID
885            * @param name the name
886            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
887            * @return the last matching asset vocabulary
888            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found
889            * @throws SystemException if a system exception occurred
890            */
891            public com.liferay.portlet.asset.model.AssetVocabulary findByG_LikeN_Last(
892                    long groupId, java.lang.String name,
893                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
894                    throws com.liferay.portal.kernel.exception.SystemException,
895                            com.liferay.portlet.asset.NoSuchVocabularyException;
896    
897            /**
898            * Returns the last asset vocabulary in the ordered set where groupId = &#63; and name LIKE &#63;.
899            *
900            * @param groupId the group ID
901            * @param name the name
902            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
903            * @return the last matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
904            * @throws SystemException if a system exception occurred
905            */
906            public com.liferay.portlet.asset.model.AssetVocabulary fetchByG_LikeN_Last(
907                    long groupId, java.lang.String name,
908                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
909                    throws com.liferay.portal.kernel.exception.SystemException;
910    
911            /**
912            * Returns the asset vocabularies before and after the current asset vocabulary in the ordered set where groupId = &#63; and name LIKE &#63;.
913            *
914            * @param vocabularyId the primary key of the current asset vocabulary
915            * @param groupId the group ID
916            * @param name the name
917            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
918            * @return the previous, current, and next asset vocabulary
919            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found
920            * @throws SystemException if a system exception occurred
921            */
922            public com.liferay.portlet.asset.model.AssetVocabulary[] findByG_LikeN_PrevAndNext(
923                    long vocabularyId, long groupId, java.lang.String name,
924                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
925                    throws com.liferay.portal.kernel.exception.SystemException,
926                            com.liferay.portlet.asset.NoSuchVocabularyException;
927    
928            /**
929            * Returns all the asset vocabularies that the user has permission to view where groupId = &#63; and name LIKE &#63;.
930            *
931            * @param groupId the group ID
932            * @param name the name
933            * @return the matching asset vocabularies that the user has permission to view
934            * @throws SystemException if a system exception occurred
935            */
936            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByG_LikeN(
937                    long groupId, java.lang.String name)
938                    throws com.liferay.portal.kernel.exception.SystemException;
939    
940            /**
941            * Returns a range of all the asset vocabularies that the user has permission to view where groupId = &#63; and name LIKE &#63;.
942            *
943            * <p>
944            * 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.asset.model.impl.AssetVocabularyModelImpl}. 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.
945            * </p>
946            *
947            * @param groupId the group ID
948            * @param name the name
949            * @param start the lower bound of the range of asset vocabularies
950            * @param end the upper bound of the range of asset vocabularies (not inclusive)
951            * @return the range of matching asset vocabularies that the user has permission to view
952            * @throws SystemException if a system exception occurred
953            */
954            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByG_LikeN(
955                    long groupId, java.lang.String name, int start, int end)
956                    throws com.liferay.portal.kernel.exception.SystemException;
957    
958            /**
959            * Returns an ordered range of all the asset vocabularies that the user has permissions to view where groupId = &#63; and name LIKE &#63;.
960            *
961            * <p>
962            * 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.asset.model.impl.AssetVocabularyModelImpl}. 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.
963            * </p>
964            *
965            * @param groupId the group ID
966            * @param name the name
967            * @param start the lower bound of the range of asset vocabularies
968            * @param end the upper bound of the range of asset vocabularies (not inclusive)
969            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
970            * @return the ordered range of matching asset vocabularies that the user has permission to view
971            * @throws SystemException if a system exception occurred
972            */
973            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByG_LikeN(
974                    long groupId, java.lang.String name, int start, int end,
975                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
976                    throws com.liferay.portal.kernel.exception.SystemException;
977    
978            /**
979            * Returns the asset vocabularies before and after the current asset vocabulary in the ordered set of asset vocabularies that the user has permission to view where groupId = &#63; and name LIKE &#63;.
980            *
981            * @param vocabularyId the primary key of the current asset vocabulary
982            * @param groupId the group ID
983            * @param name the name
984            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
985            * @return the previous, current, and next asset vocabulary
986            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found
987            * @throws SystemException if a system exception occurred
988            */
989            public com.liferay.portlet.asset.model.AssetVocabulary[] filterFindByG_LikeN_PrevAndNext(
990                    long vocabularyId, long groupId, java.lang.String name,
991                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
992                    throws com.liferay.portal.kernel.exception.SystemException,
993                            com.liferay.portlet.asset.NoSuchVocabularyException;
994    
995            /**
996            * Removes all the asset vocabularies where groupId = &#63; and name LIKE &#63; from the database.
997            *
998            * @param groupId the group ID
999            * @param name the name
1000            * @throws SystemException if a system exception occurred
1001            */
1002            public void removeByG_LikeN(long groupId, java.lang.String name)
1003                    throws com.liferay.portal.kernel.exception.SystemException;
1004    
1005            /**
1006            * Returns the number of asset vocabularies where groupId = &#63; and name LIKE &#63;.
1007            *
1008            * @param groupId the group ID
1009            * @param name the name
1010            * @return the number of matching asset vocabularies
1011            * @throws SystemException if a system exception occurred
1012            */
1013            public int countByG_LikeN(long groupId, java.lang.String name)
1014                    throws com.liferay.portal.kernel.exception.SystemException;
1015    
1016            /**
1017            * Returns the number of asset vocabularies that the user has permission to view where groupId = &#63; and name LIKE &#63;.
1018            *
1019            * @param groupId the group ID
1020            * @param name the name
1021            * @return the number of matching asset vocabularies that the user has permission to view
1022            * @throws SystemException if a system exception occurred
1023            */
1024            public int filterCountByG_LikeN(long groupId, java.lang.String name)
1025                    throws com.liferay.portal.kernel.exception.SystemException;
1026    
1027            /**
1028            * Caches the asset vocabulary in the entity cache if it is enabled.
1029            *
1030            * @param assetVocabulary the asset vocabulary
1031            */
1032            public void cacheResult(
1033                    com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary);
1034    
1035            /**
1036            * Caches the asset vocabularies in the entity cache if it is enabled.
1037            *
1038            * @param assetVocabularies the asset vocabularies
1039            */
1040            public void cacheResult(
1041                    java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> assetVocabularies);
1042    
1043            /**
1044            * Creates a new asset vocabulary with the primary key. Does not add the asset vocabulary to the database.
1045            *
1046            * @param vocabularyId the primary key for the new asset vocabulary
1047            * @return the new asset vocabulary
1048            */
1049            public com.liferay.portlet.asset.model.AssetVocabulary create(
1050                    long vocabularyId);
1051    
1052            /**
1053            * Removes the asset vocabulary with the primary key from the database. Also notifies the appropriate model listeners.
1054            *
1055            * @param vocabularyId the primary key of the asset vocabulary
1056            * @return the asset vocabulary that was removed
1057            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found
1058            * @throws SystemException if a system exception occurred
1059            */
1060            public com.liferay.portlet.asset.model.AssetVocabulary remove(
1061                    long vocabularyId)
1062                    throws com.liferay.portal.kernel.exception.SystemException,
1063                            com.liferay.portlet.asset.NoSuchVocabularyException;
1064    
1065            public com.liferay.portlet.asset.model.AssetVocabulary updateImpl(
1066                    com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
1067                    throws com.liferay.portal.kernel.exception.SystemException;
1068    
1069            /**
1070            * Returns the asset vocabulary with the primary key or throws a {@link com.liferay.portlet.asset.NoSuchVocabularyException} if it could not be found.
1071            *
1072            * @param vocabularyId the primary key of the asset vocabulary
1073            * @return the asset vocabulary
1074            * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found
1075            * @throws SystemException if a system exception occurred
1076            */
1077            public com.liferay.portlet.asset.model.AssetVocabulary findByPrimaryKey(
1078                    long vocabularyId)
1079                    throws com.liferay.portal.kernel.exception.SystemException,
1080                            com.liferay.portlet.asset.NoSuchVocabularyException;
1081    
1082            /**
1083            * Returns the asset vocabulary with the primary key or returns <code>null</code> if it could not be found.
1084            *
1085            * @param vocabularyId the primary key of the asset vocabulary
1086            * @return the asset vocabulary, or <code>null</code> if a asset vocabulary with the primary key could not be found
1087            * @throws SystemException if a system exception occurred
1088            */
1089            public com.liferay.portlet.asset.model.AssetVocabulary fetchByPrimaryKey(
1090                    long vocabularyId)
1091                    throws com.liferay.portal.kernel.exception.SystemException;
1092    
1093            /**
1094            * Returns all the asset vocabularies.
1095            *
1096            * @return the asset vocabularies
1097            * @throws SystemException if a system exception occurred
1098            */
1099            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findAll()
1100                    throws com.liferay.portal.kernel.exception.SystemException;
1101    
1102            /**
1103            * Returns a range of all the asset vocabularies.
1104            *
1105            * <p>
1106            * 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.asset.model.impl.AssetVocabularyModelImpl}. 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.
1107            * </p>
1108            *
1109            * @param start the lower bound of the range of asset vocabularies
1110            * @param end the upper bound of the range of asset vocabularies (not inclusive)
1111            * @return the range of asset vocabularies
1112            * @throws SystemException if a system exception occurred
1113            */
1114            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findAll(
1115                    int start, int end)
1116                    throws com.liferay.portal.kernel.exception.SystemException;
1117    
1118            /**
1119            * Returns an ordered range of all the asset vocabularies.
1120            *
1121            * <p>
1122            * 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.asset.model.impl.AssetVocabularyModelImpl}. 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.
1123            * </p>
1124            *
1125            * @param start the lower bound of the range of asset vocabularies
1126            * @param end the upper bound of the range of asset vocabularies (not inclusive)
1127            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
1128            * @return the ordered range of asset vocabularies
1129            * @throws SystemException if a system exception occurred
1130            */
1131            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findAll(
1132                    int start, int end,
1133                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
1134                    throws com.liferay.portal.kernel.exception.SystemException;
1135    
1136            /**
1137            * Removes all the asset vocabularies from the database.
1138            *
1139            * @throws SystemException if a system exception occurred
1140            */
1141            public void removeAll()
1142                    throws com.liferay.portal.kernel.exception.SystemException;
1143    
1144            /**
1145            * Returns the number of asset vocabularies.
1146            *
1147            * @return the number of asset vocabularies
1148            * @throws SystemException if a system exception occurred
1149            */
1150            public int countAll()
1151                    throws com.liferay.portal.kernel.exception.SystemException;
1152    }