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.expando.service;
016    
017    import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018    import com.liferay.portal.kernel.util.ReferenceRegistry;
019    
020    /**
021     * The utility for the expando value local service. This utility wraps {@link com.liferay.portlet.expando.service.impl.ExpandoValueLocalServiceImpl} and is the primary access point for service operations in application layer code running on the local server.
022     *
023     * <p>
024     * This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
025     * </p>
026     *
027     * @author Brian Wing Shun Chan
028     * @see ExpandoValueLocalService
029     * @see com.liferay.portlet.expando.service.base.ExpandoValueLocalServiceBaseImpl
030     * @see com.liferay.portlet.expando.service.impl.ExpandoValueLocalServiceImpl
031     * @generated
032     */
033    public class ExpandoValueLocalServiceUtil {
034            /*
035             * NOTE FOR DEVELOPERS:
036             *
037             * Never modify this class directly. Add custom service methods to {@link com.liferay.portlet.expando.service.impl.ExpandoValueLocalServiceImpl} and rerun ServiceBuilder to regenerate this class.
038             */
039    
040            /**
041            * Adds the expando value to the database. Also notifies the appropriate model listeners.
042            *
043            * @param expandoValue the expando value
044            * @return the expando value that was added
045            * @throws SystemException if a system exception occurred
046            */
047            public static com.liferay.portlet.expando.model.ExpandoValue addExpandoValue(
048                    com.liferay.portlet.expando.model.ExpandoValue expandoValue)
049                    throws com.liferay.portal.kernel.exception.SystemException {
050                    return getService().addExpandoValue(expandoValue);
051            }
052    
053            /**
054            * Creates a new expando value with the primary key. Does not add the expando value to the database.
055            *
056            * @param valueId the primary key for the new expando value
057            * @return the new expando value
058            */
059            public static com.liferay.portlet.expando.model.ExpandoValue createExpandoValue(
060                    long valueId) {
061                    return getService().createExpandoValue(valueId);
062            }
063    
064            /**
065            * Deletes the expando value with the primary key from the database. Also notifies the appropriate model listeners.
066            *
067            * @param valueId the primary key of the expando value
068            * @return the expando value that was removed
069            * @throws PortalException if a expando value with the primary key could not be found
070            * @throws SystemException if a system exception occurred
071            */
072            public static com.liferay.portlet.expando.model.ExpandoValue deleteExpandoValue(
073                    long valueId)
074                    throws com.liferay.portal.kernel.exception.PortalException,
075                            com.liferay.portal.kernel.exception.SystemException {
076                    return getService().deleteExpandoValue(valueId);
077            }
078    
079            /**
080            * Deletes the expando value from the database. Also notifies the appropriate model listeners.
081            *
082            * @param expandoValue the expando value
083            * @return the expando value that was removed
084            * @throws SystemException if a system exception occurred
085            */
086            public static com.liferay.portlet.expando.model.ExpandoValue deleteExpandoValue(
087                    com.liferay.portlet.expando.model.ExpandoValue expandoValue)
088                    throws com.liferay.portal.kernel.exception.SystemException {
089                    return getService().deleteExpandoValue(expandoValue);
090            }
091    
092            public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
093                    return getService().dynamicQuery();
094            }
095    
096            /**
097            * Performs a dynamic query on the database and returns the matching rows.
098            *
099            * @param dynamicQuery the dynamic query
100            * @return the matching rows
101            * @throws SystemException if a system exception occurred
102            */
103            @SuppressWarnings("rawtypes")
104            public static java.util.List dynamicQuery(
105                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
106                    throws com.liferay.portal.kernel.exception.SystemException {
107                    return getService().dynamicQuery(dynamicQuery);
108            }
109    
110            /**
111            * Performs a dynamic query on the database and returns a range of the matching rows.
112            *
113            * <p>
114            * 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.expando.model.impl.ExpandoValueModelImpl}. 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.
115            * </p>
116            *
117            * @param dynamicQuery the dynamic query
118            * @param start the lower bound of the range of model instances
119            * @param end the upper bound of the range of model instances (not inclusive)
120            * @return the range of matching rows
121            * @throws SystemException if a system exception occurred
122            */
123            @SuppressWarnings("rawtypes")
124            public static java.util.List dynamicQuery(
125                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
126                    int end) throws com.liferay.portal.kernel.exception.SystemException {
127                    return getService().dynamicQuery(dynamicQuery, start, end);
128            }
129    
130            /**
131            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
132            *
133            * <p>
134            * 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.expando.model.impl.ExpandoValueModelImpl}. 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.
135            * </p>
136            *
137            * @param dynamicQuery the dynamic query
138            * @param start the lower bound of the range of model instances
139            * @param end the upper bound of the range of model instances (not inclusive)
140            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
141            * @return the ordered range of matching rows
142            * @throws SystemException if a system exception occurred
143            */
144            @SuppressWarnings("rawtypes")
145            public static java.util.List dynamicQuery(
146                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
147                    int end,
148                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
149                    throws com.liferay.portal.kernel.exception.SystemException {
150                    return getService()
151                                       .dynamicQuery(dynamicQuery, start, end, orderByComparator);
152            }
153    
154            /**
155            * Returns the number of rows that match the dynamic query.
156            *
157            * @param dynamicQuery the dynamic query
158            * @return the number of rows that match the dynamic query
159            * @throws SystemException if a system exception occurred
160            */
161            public static long dynamicQueryCount(
162                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
163                    throws com.liferay.portal.kernel.exception.SystemException {
164                    return getService().dynamicQueryCount(dynamicQuery);
165            }
166    
167            public static com.liferay.portlet.expando.model.ExpandoValue fetchExpandoValue(
168                    long valueId)
169                    throws com.liferay.portal.kernel.exception.SystemException {
170                    return getService().fetchExpandoValue(valueId);
171            }
172    
173            /**
174            * Returns the expando value with the primary key.
175            *
176            * @param valueId the primary key of the expando value
177            * @return the expando value
178            * @throws PortalException if a expando value with the primary key could not be found
179            * @throws SystemException if a system exception occurred
180            */
181            public static com.liferay.portlet.expando.model.ExpandoValue getExpandoValue(
182                    long valueId)
183                    throws com.liferay.portal.kernel.exception.PortalException,
184                            com.liferay.portal.kernel.exception.SystemException {
185                    return getService().getExpandoValue(valueId);
186            }
187    
188            public static com.liferay.portal.model.PersistedModel getPersistedModel(
189                    java.io.Serializable primaryKeyObj)
190                    throws com.liferay.portal.kernel.exception.PortalException,
191                            com.liferay.portal.kernel.exception.SystemException {
192                    return getService().getPersistedModel(primaryKeyObj);
193            }
194    
195            /**
196            * Returns a range of all the expando values.
197            *
198            * <p>
199            * 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.expando.model.impl.ExpandoValueModelImpl}. 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.
200            * </p>
201            *
202            * @param start the lower bound of the range of expando values
203            * @param end the upper bound of the range of expando values (not inclusive)
204            * @return the range of expando values
205            * @throws SystemException if a system exception occurred
206            */
207            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getExpandoValues(
208                    int start, int end)
209                    throws com.liferay.portal.kernel.exception.SystemException {
210                    return getService().getExpandoValues(start, end);
211            }
212    
213            /**
214            * Returns the number of expando values.
215            *
216            * @return the number of expando values
217            * @throws SystemException if a system exception occurred
218            */
219            public static int getExpandoValuesCount()
220                    throws com.liferay.portal.kernel.exception.SystemException {
221                    return getService().getExpandoValuesCount();
222            }
223    
224            /**
225            * Updates the expando value in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
226            *
227            * @param expandoValue the expando value
228            * @return the expando value that was updated
229            * @throws SystemException if a system exception occurred
230            */
231            public static com.liferay.portlet.expando.model.ExpandoValue updateExpandoValue(
232                    com.liferay.portlet.expando.model.ExpandoValue expandoValue)
233                    throws com.liferay.portal.kernel.exception.SystemException {
234                    return getService().updateExpandoValue(expandoValue);
235            }
236    
237            /**
238            * Returns the Spring bean ID for this bean.
239            *
240            * @return the Spring bean ID for this bean
241            */
242            public static java.lang.String getBeanIdentifier() {
243                    return getService().getBeanIdentifier();
244            }
245    
246            /**
247            * Sets the Spring bean ID for this bean.
248            *
249            * @param beanIdentifier the Spring bean ID for this bean
250            */
251            public static void setBeanIdentifier(java.lang.String beanIdentifier) {
252                    getService().setBeanIdentifier(beanIdentifier);
253            }
254    
255            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
256                    long classNameId, long tableId, long columnId, long classPK,
257                    java.lang.String data)
258                    throws com.liferay.portal.kernel.exception.PortalException,
259                            com.liferay.portal.kernel.exception.SystemException {
260                    return getService()
261                                       .addValue(classNameId, tableId, columnId, classPK, data);
262            }
263    
264            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
265                    long companyId, java.lang.String className, java.lang.String tableName,
266                    java.lang.String columnName, long classPK, boolean data)
267                    throws com.liferay.portal.kernel.exception.PortalException,
268                            com.liferay.portal.kernel.exception.SystemException {
269                    return getService()
270                                       .addValue(companyId, className, tableName, columnName,
271                            classPK, data);
272            }
273    
274            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
275                    long companyId, java.lang.String className, java.lang.String tableName,
276                    java.lang.String columnName, long classPK, boolean[] data)
277                    throws com.liferay.portal.kernel.exception.PortalException,
278                            com.liferay.portal.kernel.exception.SystemException {
279                    return getService()
280                                       .addValue(companyId, className, tableName, columnName,
281                            classPK, data);
282            }
283    
284            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
285                    long companyId, java.lang.String className, java.lang.String tableName,
286                    java.lang.String columnName, long classPK, java.util.Date data)
287                    throws com.liferay.portal.kernel.exception.PortalException,
288                            com.liferay.portal.kernel.exception.SystemException {
289                    return getService()
290                                       .addValue(companyId, className, tableName, columnName,
291                            classPK, data);
292            }
293    
294            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
295                    long companyId, java.lang.String className, java.lang.String tableName,
296                    java.lang.String columnName, long classPK, java.util.Date[] data)
297                    throws com.liferay.portal.kernel.exception.PortalException,
298                            com.liferay.portal.kernel.exception.SystemException {
299                    return getService()
300                                       .addValue(companyId, className, tableName, columnName,
301                            classPK, data);
302            }
303    
304            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
305                    long companyId, java.lang.String className, java.lang.String tableName,
306                    java.lang.String columnName, long classPK, double data)
307                    throws com.liferay.portal.kernel.exception.PortalException,
308                            com.liferay.portal.kernel.exception.SystemException {
309                    return getService()
310                                       .addValue(companyId, className, tableName, columnName,
311                            classPK, data);
312            }
313    
314            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
315                    long companyId, java.lang.String className, java.lang.String tableName,
316                    java.lang.String columnName, long classPK, double[] data)
317                    throws com.liferay.portal.kernel.exception.PortalException,
318                            com.liferay.portal.kernel.exception.SystemException {
319                    return getService()
320                                       .addValue(companyId, className, tableName, columnName,
321                            classPK, data);
322            }
323    
324            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
325                    long companyId, java.lang.String className, java.lang.String tableName,
326                    java.lang.String columnName, long classPK, float data)
327                    throws com.liferay.portal.kernel.exception.PortalException,
328                            com.liferay.portal.kernel.exception.SystemException {
329                    return getService()
330                                       .addValue(companyId, className, tableName, columnName,
331                            classPK, data);
332            }
333    
334            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
335                    long companyId, java.lang.String className, java.lang.String tableName,
336                    java.lang.String columnName, long classPK, float[] data)
337                    throws com.liferay.portal.kernel.exception.PortalException,
338                            com.liferay.portal.kernel.exception.SystemException {
339                    return getService()
340                                       .addValue(companyId, className, tableName, columnName,
341                            classPK, data);
342            }
343    
344            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
345                    long companyId, java.lang.String className, java.lang.String tableName,
346                    java.lang.String columnName, long classPK, int data)
347                    throws com.liferay.portal.kernel.exception.PortalException,
348                            com.liferay.portal.kernel.exception.SystemException {
349                    return getService()
350                                       .addValue(companyId, className, tableName, columnName,
351                            classPK, data);
352            }
353    
354            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
355                    long companyId, java.lang.String className, java.lang.String tableName,
356                    java.lang.String columnName, long classPK, int[] data)
357                    throws com.liferay.portal.kernel.exception.PortalException,
358                            com.liferay.portal.kernel.exception.SystemException {
359                    return getService()
360                                       .addValue(companyId, className, tableName, columnName,
361                            classPK, data);
362            }
363    
364            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
365                    long companyId, java.lang.String className, java.lang.String tableName,
366                    java.lang.String columnName, long classPK, long data)
367                    throws com.liferay.portal.kernel.exception.PortalException,
368                            com.liferay.portal.kernel.exception.SystemException {
369                    return getService()
370                                       .addValue(companyId, className, tableName, columnName,
371                            classPK, data);
372            }
373    
374            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
375                    long companyId, java.lang.String className, java.lang.String tableName,
376                    java.lang.String columnName, long classPK, long[] data)
377                    throws com.liferay.portal.kernel.exception.PortalException,
378                            com.liferay.portal.kernel.exception.SystemException {
379                    return getService()
380                                       .addValue(companyId, className, tableName, columnName,
381                            classPK, data);
382            }
383    
384            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
385                    long companyId, java.lang.String className, java.lang.String tableName,
386                    java.lang.String columnName, long classPK,
387                    java.util.Map<java.util.Locale, ?> dataMap,
388                    java.util.Locale defautlLocale)
389                    throws com.liferay.portal.kernel.exception.PortalException,
390                            com.liferay.portal.kernel.exception.SystemException {
391                    return getService()
392                                       .addValue(companyId, className, tableName, columnName,
393                            classPK, dataMap, defautlLocale);
394            }
395    
396            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
397                    long companyId, java.lang.String className, java.lang.String tableName,
398                    java.lang.String columnName, long classPK, java.lang.Number data)
399                    throws com.liferay.portal.kernel.exception.PortalException,
400                            com.liferay.portal.kernel.exception.SystemException {
401                    return getService()
402                                       .addValue(companyId, className, tableName, columnName,
403                            classPK, data);
404            }
405    
406            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
407                    long companyId, java.lang.String className, java.lang.String tableName,
408                    java.lang.String columnName, long classPK, java.lang.Number[] data)
409                    throws com.liferay.portal.kernel.exception.PortalException,
410                            com.liferay.portal.kernel.exception.SystemException {
411                    return getService()
412                                       .addValue(companyId, className, tableName, columnName,
413                            classPK, data);
414            }
415    
416            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
417                    long companyId, java.lang.String className, java.lang.String tableName,
418                    java.lang.String columnName, long classPK, java.lang.Object data)
419                    throws com.liferay.portal.kernel.exception.PortalException,
420                            com.liferay.portal.kernel.exception.SystemException {
421                    return getService()
422                                       .addValue(companyId, className, tableName, columnName,
423                            classPK, data);
424            }
425    
426            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
427                    long companyId, java.lang.String className, java.lang.String tableName,
428                    java.lang.String columnName, long classPK, short data)
429                    throws com.liferay.portal.kernel.exception.PortalException,
430                            com.liferay.portal.kernel.exception.SystemException {
431                    return getService()
432                                       .addValue(companyId, className, tableName, columnName,
433                            classPK, data);
434            }
435    
436            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
437                    long companyId, java.lang.String className, java.lang.String tableName,
438                    java.lang.String columnName, long classPK, short[] data)
439                    throws com.liferay.portal.kernel.exception.PortalException,
440                            com.liferay.portal.kernel.exception.SystemException {
441                    return getService()
442                                       .addValue(companyId, className, tableName, columnName,
443                            classPK, data);
444            }
445    
446            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
447                    long companyId, java.lang.String className, java.lang.String tableName,
448                    java.lang.String columnName, long classPK, java.lang.String data)
449                    throws com.liferay.portal.kernel.exception.PortalException,
450                            com.liferay.portal.kernel.exception.SystemException {
451                    return getService()
452                                       .addValue(companyId, className, tableName, columnName,
453                            classPK, data);
454            }
455    
456            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
457                    long companyId, java.lang.String className, java.lang.String tableName,
458                    java.lang.String columnName, long classPK, java.lang.String[] data)
459                    throws com.liferay.portal.kernel.exception.PortalException,
460                            com.liferay.portal.kernel.exception.SystemException {
461                    return getService()
462                                       .addValue(companyId, className, tableName, columnName,
463                            classPK, data);
464            }
465    
466            /**
467            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
468            String, String, long, boolean[])}
469            */
470            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
471                    java.lang.String className, java.lang.String tableName,
472                    java.lang.String columnName, long classPK, boolean data)
473                    throws com.liferay.portal.kernel.exception.PortalException,
474                            com.liferay.portal.kernel.exception.SystemException {
475                    return getService()
476                                       .addValue(className, tableName, columnName, classPK, data);
477            }
478    
479            /**
480            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
481            String, String, long, boolean[])}
482            */
483            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
484                    java.lang.String className, java.lang.String tableName,
485                    java.lang.String columnName, long classPK, boolean[] data)
486                    throws com.liferay.portal.kernel.exception.PortalException,
487                            com.liferay.portal.kernel.exception.SystemException {
488                    return getService()
489                                       .addValue(className, tableName, columnName, classPK, data);
490            }
491    
492            /**
493            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
494            String, String, long, Date[])}
495            */
496            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
497                    java.lang.String className, java.lang.String tableName,
498                    java.lang.String columnName, long classPK, java.util.Date data)
499                    throws com.liferay.portal.kernel.exception.PortalException,
500                            com.liferay.portal.kernel.exception.SystemException {
501                    return getService()
502                                       .addValue(className, tableName, columnName, classPK, data);
503            }
504    
505            /**
506            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
507            String, String, long, Date[])}
508            */
509            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
510                    java.lang.String className, java.lang.String tableName,
511                    java.lang.String columnName, long classPK, java.util.Date[] data)
512                    throws com.liferay.portal.kernel.exception.PortalException,
513                            com.liferay.portal.kernel.exception.SystemException {
514                    return getService()
515                                       .addValue(className, tableName, columnName, classPK, data);
516            }
517    
518            /**
519            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
520            String, String, long, double[])}
521            */
522            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
523                    java.lang.String className, java.lang.String tableName,
524                    java.lang.String columnName, long classPK, double data)
525                    throws com.liferay.portal.kernel.exception.PortalException,
526                            com.liferay.portal.kernel.exception.SystemException {
527                    return getService()
528                                       .addValue(className, tableName, columnName, classPK, data);
529            }
530    
531            /**
532            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
533            String, String, long, double[])}
534            */
535            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
536                    java.lang.String className, java.lang.String tableName,
537                    java.lang.String columnName, long classPK, double[] data)
538                    throws com.liferay.portal.kernel.exception.PortalException,
539                            com.liferay.portal.kernel.exception.SystemException {
540                    return getService()
541                                       .addValue(className, tableName, columnName, classPK, data);
542            }
543    
544            /**
545            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
546            String, String, long, float[])}
547            */
548            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
549                    java.lang.String className, java.lang.String tableName,
550                    java.lang.String columnName, long classPK, float data)
551                    throws com.liferay.portal.kernel.exception.PortalException,
552                            com.liferay.portal.kernel.exception.SystemException {
553                    return getService()
554                                       .addValue(className, tableName, columnName, classPK, data);
555            }
556    
557            /**
558            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
559            String, String, long, float[])}
560            */
561            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
562                    java.lang.String className, java.lang.String tableName,
563                    java.lang.String columnName, long classPK, float[] data)
564                    throws com.liferay.portal.kernel.exception.PortalException,
565                            com.liferay.portal.kernel.exception.SystemException {
566                    return getService()
567                                       .addValue(className, tableName, columnName, classPK, data);
568            }
569    
570            /**
571            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
572            String, String, long, int[])}
573            */
574            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
575                    java.lang.String className, java.lang.String tableName,
576                    java.lang.String columnName, long classPK, int data)
577                    throws com.liferay.portal.kernel.exception.PortalException,
578                            com.liferay.portal.kernel.exception.SystemException {
579                    return getService()
580                                       .addValue(className, tableName, columnName, classPK, data);
581            }
582    
583            /**
584            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
585            String, String, long, int[])}
586            */
587            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
588                    java.lang.String className, java.lang.String tableName,
589                    java.lang.String columnName, long classPK, int[] data)
590                    throws com.liferay.portal.kernel.exception.PortalException,
591                            com.liferay.portal.kernel.exception.SystemException {
592                    return getService()
593                                       .addValue(className, tableName, columnName, classPK, data);
594            }
595    
596            /**
597            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
598            String, String, long, long[])}
599            */
600            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
601                    java.lang.String className, java.lang.String tableName,
602                    java.lang.String columnName, long classPK, long data)
603                    throws com.liferay.portal.kernel.exception.PortalException,
604                            com.liferay.portal.kernel.exception.SystemException {
605                    return getService()
606                                       .addValue(className, tableName, columnName, classPK, data);
607            }
608    
609            /**
610            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
611            String, String, long, long[])}
612            */
613            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
614                    java.lang.String className, java.lang.String tableName,
615                    java.lang.String columnName, long classPK, long[] data)
616                    throws com.liferay.portal.kernel.exception.PortalException,
617                            com.liferay.portal.kernel.exception.SystemException {
618                    return getService()
619                                       .addValue(className, tableName, columnName, classPK, data);
620            }
621    
622            /**
623            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
624            String, String, long, Object)}
625            */
626            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
627                    java.lang.String className, java.lang.String tableName,
628                    java.lang.String columnName, long classPK, java.lang.Object data)
629                    throws com.liferay.portal.kernel.exception.PortalException,
630                            com.liferay.portal.kernel.exception.SystemException {
631                    return getService()
632                                       .addValue(className, tableName, columnName, classPK, data);
633            }
634    
635            /**
636            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
637            String, String, long, short[])}
638            */
639            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
640                    java.lang.String className, java.lang.String tableName,
641                    java.lang.String columnName, long classPK, short data)
642                    throws com.liferay.portal.kernel.exception.PortalException,
643                            com.liferay.portal.kernel.exception.SystemException {
644                    return getService()
645                                       .addValue(className, tableName, columnName, classPK, data);
646            }
647    
648            /**
649            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
650            String, String, long, short[])}
651            */
652            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
653                    java.lang.String className, java.lang.String tableName,
654                    java.lang.String columnName, long classPK, short[] data)
655                    throws com.liferay.portal.kernel.exception.PortalException,
656                            com.liferay.portal.kernel.exception.SystemException {
657                    return getService()
658                                       .addValue(className, tableName, columnName, classPK, data);
659            }
660    
661            /**
662            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
663            String, String, long, String[])}
664            */
665            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
666                    java.lang.String className, java.lang.String tableName,
667                    java.lang.String columnName, long classPK, java.lang.String data)
668                    throws com.liferay.portal.kernel.exception.PortalException,
669                            com.liferay.portal.kernel.exception.SystemException {
670                    return getService()
671                                       .addValue(className, tableName, columnName, classPK, data);
672            }
673    
674            /**
675            * @deprecated As of 6.1.0, replaced by {@link #addValue(long, String,
676            String, String, long, String[])}
677            */
678            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
679                    java.lang.String className, java.lang.String tableName,
680                    java.lang.String columnName, long classPK, java.lang.String[] data)
681                    throws com.liferay.portal.kernel.exception.PortalException,
682                            com.liferay.portal.kernel.exception.SystemException {
683                    return getService()
684                                       .addValue(className, tableName, columnName, classPK, data);
685            }
686    
687            public static void addValues(long classNameId, long tableId,
688                    java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> columns,
689                    long classPK, java.util.Map<java.lang.String, java.lang.String> data)
690                    throws com.liferay.portal.kernel.exception.PortalException,
691                            com.liferay.portal.kernel.exception.SystemException {
692                    getService().addValues(classNameId, tableId, columns, classPK, data);
693            }
694    
695            public static void addValues(long companyId, long classNameId,
696                    java.lang.String tableName, long classPK,
697                    java.util.Map<java.lang.String, java.io.Serializable> attributes)
698                    throws com.liferay.portal.kernel.exception.PortalException,
699                            com.liferay.portal.kernel.exception.SystemException {
700                    getService()
701                            .addValues(companyId, classNameId, tableName, classPK, attributes);
702            }
703    
704            public static void addValues(long companyId, java.lang.String className,
705                    java.lang.String tableName, long classPK,
706                    java.util.Map<java.lang.String, java.io.Serializable> attributes)
707                    throws com.liferay.portal.kernel.exception.PortalException,
708                            com.liferay.portal.kernel.exception.SystemException {
709                    getService()
710                            .addValues(companyId, className, tableName, classPK, attributes);
711            }
712    
713            public static void deleteColumnValues(long columnId)
714                    throws com.liferay.portal.kernel.exception.SystemException {
715                    getService().deleteColumnValues(columnId);
716            }
717    
718            public static void deleteRowValues(long rowId)
719                    throws com.liferay.portal.kernel.exception.SystemException {
720                    getService().deleteRowValues(rowId);
721            }
722    
723            public static void deleteTableValues(long tableId)
724                    throws com.liferay.portal.kernel.exception.SystemException {
725                    getService().deleteTableValues(tableId);
726            }
727    
728            public static void deleteValue(
729                    com.liferay.portlet.expando.model.ExpandoValue value)
730                    throws com.liferay.portal.kernel.exception.SystemException {
731                    getService().deleteValue(value);
732            }
733    
734            public static void deleteValue(long valueId)
735                    throws com.liferay.portal.kernel.exception.PortalException,
736                            com.liferay.portal.kernel.exception.SystemException {
737                    getService().deleteValue(valueId);
738            }
739    
740            public static void deleteValue(long columnId, long rowId)
741                    throws com.liferay.portal.kernel.exception.PortalException,
742                            com.liferay.portal.kernel.exception.SystemException {
743                    getService().deleteValue(columnId, rowId);
744            }
745    
746            public static void deleteValue(long companyId, long classNameId,
747                    java.lang.String tableName, java.lang.String columnName, long classPK)
748                    throws com.liferay.portal.kernel.exception.PortalException,
749                            com.liferay.portal.kernel.exception.SystemException {
750                    getService()
751                            .deleteValue(companyId, classNameId, tableName, columnName, classPK);
752            }
753    
754            public static void deleteValue(long companyId, java.lang.String className,
755                    java.lang.String tableName, java.lang.String columnName, long classPK)
756                    throws com.liferay.portal.kernel.exception.PortalException,
757                            com.liferay.portal.kernel.exception.SystemException {
758                    getService()
759                            .deleteValue(companyId, className, tableName, columnName, classPK);
760            }
761    
762            public static void deleteValues(long classNameId, long classPK)
763                    throws com.liferay.portal.kernel.exception.SystemException {
764                    getService().deleteValues(classNameId, classPK);
765            }
766    
767            public static void deleteValues(java.lang.String className, long classPK)
768                    throws com.liferay.portal.kernel.exception.SystemException {
769                    getService().deleteValues(className, classPK);
770            }
771    
772            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
773                    long columnId, int start, int end)
774                    throws com.liferay.portal.kernel.exception.SystemException {
775                    return getService().getColumnValues(columnId, start, end);
776            }
777    
778            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
779                    long companyId, long classNameId, java.lang.String tableName,
780                    java.lang.String columnName, int start, int end)
781                    throws com.liferay.portal.kernel.exception.SystemException {
782                    return getService()
783                                       .getColumnValues(companyId, classNameId, tableName,
784                            columnName, start, end);
785            }
786    
787            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
788                    long companyId, long classNameId, java.lang.String tableName,
789                    java.lang.String columnName, java.lang.String data, int start, int end)
790                    throws com.liferay.portal.kernel.exception.SystemException {
791                    return getService()
792                                       .getColumnValues(companyId, classNameId, tableName,
793                            columnName, data, start, end);
794            }
795    
796            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
797                    long companyId, java.lang.String className, java.lang.String tableName,
798                    java.lang.String columnName, int start, int end)
799                    throws com.liferay.portal.kernel.exception.SystemException {
800                    return getService()
801                                       .getColumnValues(companyId, className, tableName,
802                            columnName, start, end);
803            }
804    
805            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
806                    long companyId, java.lang.String className, java.lang.String tableName,
807                    java.lang.String columnName, java.lang.String data, int start, int end)
808                    throws com.liferay.portal.kernel.exception.SystemException {
809                    return getService()
810                                       .getColumnValues(companyId, className, tableName,
811                            columnName, data, start, end);
812            }
813    
814            /**
815            * @deprecated As of 6.1.0, replaced by {@link #getColumnValues(long,
816            String, String, String, String, int, int)}
817            */
818            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
819                    java.lang.String className, java.lang.String tableName,
820                    java.lang.String columnName, java.lang.String data, int start, int end)
821                    throws com.liferay.portal.kernel.exception.SystemException {
822                    return getService()
823                                       .getColumnValues(className, tableName, columnName, data,
824                            start, end);
825            }
826    
827            public static int getColumnValuesCount(long columnId)
828                    throws com.liferay.portal.kernel.exception.SystemException {
829                    return getService().getColumnValuesCount(columnId);
830            }
831    
832            public static int getColumnValuesCount(long companyId, long classNameId,
833                    java.lang.String tableName, java.lang.String columnName)
834                    throws com.liferay.portal.kernel.exception.SystemException {
835                    return getService()
836                                       .getColumnValuesCount(companyId, classNameId, tableName,
837                            columnName);
838            }
839    
840            public static int getColumnValuesCount(long companyId, long classNameId,
841                    java.lang.String tableName, java.lang.String columnName,
842                    java.lang.String data)
843                    throws com.liferay.portal.kernel.exception.SystemException {
844                    return getService()
845                                       .getColumnValuesCount(companyId, classNameId, tableName,
846                            columnName, data);
847            }
848    
849            public static int getColumnValuesCount(long companyId,
850                    java.lang.String className, java.lang.String tableName,
851                    java.lang.String columnName)
852                    throws com.liferay.portal.kernel.exception.SystemException {
853                    return getService()
854                                       .getColumnValuesCount(companyId, className, tableName,
855                            columnName);
856            }
857    
858            public static int getColumnValuesCount(long companyId,
859                    java.lang.String className, java.lang.String tableName,
860                    java.lang.String columnName, java.lang.String data)
861                    throws com.liferay.portal.kernel.exception.SystemException {
862                    return getService()
863                                       .getColumnValuesCount(companyId, className, tableName,
864                            columnName, data);
865            }
866    
867            /**
868            * @deprecated As of 6.1.0, replaced by {@link #getColumnValuesCount(long,
869            String, String, String, String)}
870            */
871            public static int getColumnValuesCount(java.lang.String className,
872                    java.lang.String tableName, java.lang.String columnName,
873                    java.lang.String data)
874                    throws com.liferay.portal.kernel.exception.SystemException {
875                    return getService()
876                                       .getColumnValuesCount(className, tableName, columnName, data);
877            }
878    
879            public static java.util.Map<java.lang.String, java.io.Serializable> getData(
880                    long companyId, java.lang.String className, java.lang.String tableName,
881                    java.util.Collection<java.lang.String> columnNames, long classPK)
882                    throws com.liferay.portal.kernel.exception.PortalException,
883                            com.liferay.portal.kernel.exception.SystemException {
884                    return getService()
885                                       .getData(companyId, className, tableName, columnNames,
886                            classPK);
887            }
888    
889            public static java.io.Serializable getData(long companyId,
890                    java.lang.String className, java.lang.String tableName,
891                    java.lang.String columnName, long classPK)
892                    throws com.liferay.portal.kernel.exception.PortalException,
893                            com.liferay.portal.kernel.exception.SystemException {
894                    return getService()
895                                       .getData(companyId, className, tableName, columnName, classPK);
896            }
897    
898            public static boolean getData(long companyId, java.lang.String className,
899                    java.lang.String tableName, java.lang.String columnName, long classPK,
900                    boolean defaultData)
901                    throws com.liferay.portal.kernel.exception.PortalException,
902                            com.liferay.portal.kernel.exception.SystemException {
903                    return getService()
904                                       .getData(companyId, className, tableName, columnName,
905                            classPK, defaultData);
906            }
907    
908            public static boolean[] getData(long companyId, java.lang.String className,
909                    java.lang.String tableName, java.lang.String columnName, long classPK,
910                    boolean[] defaultData)
911                    throws com.liferay.portal.kernel.exception.PortalException,
912                            com.liferay.portal.kernel.exception.SystemException {
913                    return getService()
914                                       .getData(companyId, className, tableName, columnName,
915                            classPK, defaultData);
916            }
917    
918            public static java.util.Date getData(long companyId,
919                    java.lang.String className, java.lang.String tableName,
920                    java.lang.String columnName, long classPK, java.util.Date defaultData)
921                    throws com.liferay.portal.kernel.exception.PortalException,
922                            com.liferay.portal.kernel.exception.SystemException {
923                    return getService()
924                                       .getData(companyId, className, tableName, columnName,
925                            classPK, defaultData);
926            }
927    
928            public static java.util.Date[] getData(long companyId,
929                    java.lang.String className, java.lang.String tableName,
930                    java.lang.String columnName, long classPK, java.util.Date[] defaultData)
931                    throws com.liferay.portal.kernel.exception.PortalException,
932                            com.liferay.portal.kernel.exception.SystemException {
933                    return getService()
934                                       .getData(companyId, className, tableName, columnName,
935                            classPK, defaultData);
936            }
937    
938            public static double getData(long companyId, java.lang.String className,
939                    java.lang.String tableName, java.lang.String columnName, long classPK,
940                    double defaultData)
941                    throws com.liferay.portal.kernel.exception.PortalException,
942                            com.liferay.portal.kernel.exception.SystemException {
943                    return getService()
944                                       .getData(companyId, className, tableName, columnName,
945                            classPK, defaultData);
946            }
947    
948            public static double[] getData(long companyId, java.lang.String className,
949                    java.lang.String tableName, java.lang.String columnName, long classPK,
950                    double[] defaultData)
951                    throws com.liferay.portal.kernel.exception.PortalException,
952                            com.liferay.portal.kernel.exception.SystemException {
953                    return getService()
954                                       .getData(companyId, className, tableName, columnName,
955                            classPK, defaultData);
956            }
957    
958            public static float getData(long companyId, java.lang.String className,
959                    java.lang.String tableName, java.lang.String columnName, long classPK,
960                    float defaultData)
961                    throws com.liferay.portal.kernel.exception.PortalException,
962                            com.liferay.portal.kernel.exception.SystemException {
963                    return getService()
964                                       .getData(companyId, className, tableName, columnName,
965                            classPK, defaultData);
966            }
967    
968            public static float[] getData(long companyId, java.lang.String className,
969                    java.lang.String tableName, java.lang.String columnName, long classPK,
970                    float[] defaultData)
971                    throws com.liferay.portal.kernel.exception.PortalException,
972                            com.liferay.portal.kernel.exception.SystemException {
973                    return getService()
974                                       .getData(companyId, className, tableName, columnName,
975                            classPK, defaultData);
976            }
977    
978            public static int getData(long companyId, java.lang.String className,
979                    java.lang.String tableName, java.lang.String columnName, long classPK,
980                    int defaultData)
981                    throws com.liferay.portal.kernel.exception.PortalException,
982                            com.liferay.portal.kernel.exception.SystemException {
983                    return getService()
984                                       .getData(companyId, className, tableName, columnName,
985                            classPK, defaultData);
986            }
987    
988            public static int[] getData(long companyId, java.lang.String className,
989                    java.lang.String tableName, java.lang.String columnName, long classPK,
990                    int[] defaultData)
991                    throws com.liferay.portal.kernel.exception.PortalException,
992                            com.liferay.portal.kernel.exception.SystemException {
993                    return getService()
994                                       .getData(companyId, className, tableName, columnName,
995                            classPK, defaultData);
996            }
997    
998            public static long getData(long companyId, java.lang.String className,
999                    java.lang.String tableName, java.lang.String columnName, long classPK,
1000                    long defaultData)
1001                    throws com.liferay.portal.kernel.exception.PortalException,
1002                            com.liferay.portal.kernel.exception.SystemException {
1003                    return getService()
1004                                       .getData(companyId, className, tableName, columnName,
1005                            classPK, defaultData);
1006            }
1007    
1008            public static long[] getData(long companyId, java.lang.String className,
1009                    java.lang.String tableName, java.lang.String columnName, long classPK,
1010                    long[] defaultData)
1011                    throws com.liferay.portal.kernel.exception.PortalException,
1012                            com.liferay.portal.kernel.exception.SystemException {
1013                    return getService()
1014                                       .getData(companyId, className, tableName, columnName,
1015                            classPK, defaultData);
1016            }
1017    
1018            public static java.util.Map<?, ?> getData(long companyId,
1019                    java.lang.String className, java.lang.String tableName,
1020                    java.lang.String columnName, long classPK,
1021                    java.util.Map<?, ?> defaultData)
1022                    throws com.liferay.portal.kernel.exception.PortalException,
1023                            com.liferay.portal.kernel.exception.SystemException {
1024                    return getService()
1025                                       .getData(companyId, className, tableName, columnName,
1026                            classPK, defaultData);
1027            }
1028    
1029            public static java.lang.Number getData(long companyId,
1030                    java.lang.String className, java.lang.String tableName,
1031                    java.lang.String columnName, long classPK, java.lang.Number defaultData)
1032                    throws com.liferay.portal.kernel.exception.PortalException,
1033                            com.liferay.portal.kernel.exception.SystemException {
1034                    return getService()
1035                                       .getData(companyId, className, tableName, columnName,
1036                            classPK, defaultData);
1037            }
1038    
1039            public static java.lang.Number[] getData(long companyId,
1040                    java.lang.String className, java.lang.String tableName,
1041                    java.lang.String columnName, long classPK,
1042                    java.lang.Number[] defaultData)
1043                    throws com.liferay.portal.kernel.exception.PortalException,
1044                            com.liferay.portal.kernel.exception.SystemException {
1045                    return getService()
1046                                       .getData(companyId, className, tableName, columnName,
1047                            classPK, defaultData);
1048            }
1049    
1050            public static short getData(long companyId, java.lang.String className,
1051                    java.lang.String tableName, java.lang.String columnName, long classPK,
1052                    short defaultData)
1053                    throws com.liferay.portal.kernel.exception.PortalException,
1054                            com.liferay.portal.kernel.exception.SystemException {
1055                    return getService()
1056                                       .getData(companyId, className, tableName, columnName,
1057                            classPK, defaultData);
1058            }
1059    
1060            public static short[] getData(long companyId, java.lang.String className,
1061                    java.lang.String tableName, java.lang.String columnName, long classPK,
1062                    short[] defaultData)
1063                    throws com.liferay.portal.kernel.exception.PortalException,
1064                            com.liferay.portal.kernel.exception.SystemException {
1065                    return getService()
1066                                       .getData(companyId, className, tableName, columnName,
1067                            classPK, defaultData);
1068            }
1069    
1070            public static java.lang.String getData(long companyId,
1071                    java.lang.String className, java.lang.String tableName,
1072                    java.lang.String columnName, long classPK, java.lang.String defaultData)
1073                    throws com.liferay.portal.kernel.exception.PortalException,
1074                            com.liferay.portal.kernel.exception.SystemException {
1075                    return getService()
1076                                       .getData(companyId, className, tableName, columnName,
1077                            classPK, defaultData);
1078            }
1079    
1080            public static java.lang.String[] getData(long companyId,
1081                    java.lang.String className, java.lang.String tableName,
1082                    java.lang.String columnName, long classPK,
1083                    java.lang.String[] defaultData)
1084                    throws com.liferay.portal.kernel.exception.PortalException,
1085                            com.liferay.portal.kernel.exception.SystemException {
1086                    return getService()
1087                                       .getData(companyId, className, tableName, columnName,
1088                            classPK, defaultData);
1089            }
1090    
1091            /**
1092            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1093            String, String, long)}
1094            */
1095            public static java.io.Serializable getData(java.lang.String className,
1096                    java.lang.String tableName, java.lang.String columnName, long classPK)
1097                    throws com.liferay.portal.kernel.exception.PortalException,
1098                            com.liferay.portal.kernel.exception.SystemException {
1099                    return getService().getData(className, tableName, columnName, classPK);
1100            }
1101    
1102            /**
1103            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1104            String, String, long, boolean[])}
1105            */
1106            public static boolean getData(java.lang.String className,
1107                    java.lang.String tableName, java.lang.String columnName, long classPK,
1108                    boolean defaultData)
1109                    throws com.liferay.portal.kernel.exception.PortalException,
1110                            com.liferay.portal.kernel.exception.SystemException {
1111                    return getService()
1112                                       .getData(className, tableName, columnName, classPK,
1113                            defaultData);
1114            }
1115    
1116            /**
1117            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1118            String, String, long, boolean[])}
1119            */
1120            public static boolean[] getData(java.lang.String className,
1121                    java.lang.String tableName, java.lang.String columnName, long classPK,
1122                    boolean[] defaultData)
1123                    throws com.liferay.portal.kernel.exception.PortalException,
1124                            com.liferay.portal.kernel.exception.SystemException {
1125                    return getService()
1126                                       .getData(className, tableName, columnName, classPK,
1127                            defaultData);
1128            }
1129    
1130            /**
1131            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1132            String, String, long, Date[])}
1133            */
1134            public static java.util.Date getData(java.lang.String className,
1135                    java.lang.String tableName, java.lang.String columnName, long classPK,
1136                    java.util.Date defaultData)
1137                    throws com.liferay.portal.kernel.exception.PortalException,
1138                            com.liferay.portal.kernel.exception.SystemException {
1139                    return getService()
1140                                       .getData(className, tableName, columnName, classPK,
1141                            defaultData);
1142            }
1143    
1144            /**
1145            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1146            String, String, long, Date[])}
1147            */
1148            public static java.util.Date[] getData(java.lang.String className,
1149                    java.lang.String tableName, java.lang.String columnName, long classPK,
1150                    java.util.Date[] defaultData)
1151                    throws com.liferay.portal.kernel.exception.PortalException,
1152                            com.liferay.portal.kernel.exception.SystemException {
1153                    return getService()
1154                                       .getData(className, tableName, columnName, classPK,
1155                            defaultData);
1156            }
1157    
1158            /**
1159            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1160            String, String, long, double[])}
1161            */
1162            public static double getData(java.lang.String className,
1163                    java.lang.String tableName, java.lang.String columnName, long classPK,
1164                    double defaultData)
1165                    throws com.liferay.portal.kernel.exception.PortalException,
1166                            com.liferay.portal.kernel.exception.SystemException {
1167                    return getService()
1168                                       .getData(className, tableName, columnName, classPK,
1169                            defaultData);
1170            }
1171    
1172            /**
1173            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1174            String, String, long, double[])}
1175            */
1176            public static double[] getData(java.lang.String className,
1177                    java.lang.String tableName, java.lang.String columnName, long classPK,
1178                    double[] defaultData)
1179                    throws com.liferay.portal.kernel.exception.PortalException,
1180                            com.liferay.portal.kernel.exception.SystemException {
1181                    return getService()
1182                                       .getData(className, tableName, columnName, classPK,
1183                            defaultData);
1184            }
1185    
1186            /**
1187            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1188            String, String, long, float[])}
1189            */
1190            public static float getData(java.lang.String className,
1191                    java.lang.String tableName, java.lang.String columnName, long classPK,
1192                    float defaultData)
1193                    throws com.liferay.portal.kernel.exception.PortalException,
1194                            com.liferay.portal.kernel.exception.SystemException {
1195                    return getService()
1196                                       .getData(className, tableName, columnName, classPK,
1197                            defaultData);
1198            }
1199    
1200            /**
1201            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1202            String, String, long, float[])}
1203            */
1204            public static float[] getData(java.lang.String className,
1205                    java.lang.String tableName, java.lang.String columnName, long classPK,
1206                    float[] defaultData)
1207                    throws com.liferay.portal.kernel.exception.PortalException,
1208                            com.liferay.portal.kernel.exception.SystemException {
1209                    return getService()
1210                                       .getData(className, tableName, columnName, classPK,
1211                            defaultData);
1212            }
1213    
1214            /**
1215            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1216            String, String, long, int[])}
1217            */
1218            public static int getData(java.lang.String className,
1219                    java.lang.String tableName, java.lang.String columnName, long classPK,
1220                    int defaultData)
1221                    throws com.liferay.portal.kernel.exception.PortalException,
1222                            com.liferay.portal.kernel.exception.SystemException {
1223                    return getService()
1224                                       .getData(className, tableName, columnName, classPK,
1225                            defaultData);
1226            }
1227    
1228            /**
1229            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1230            String, String, long, int[])}
1231            */
1232            public static int[] getData(java.lang.String className,
1233                    java.lang.String tableName, java.lang.String columnName, long classPK,
1234                    int[] defaultData)
1235                    throws com.liferay.portal.kernel.exception.PortalException,
1236                            com.liferay.portal.kernel.exception.SystemException {
1237                    return getService()
1238                                       .getData(className, tableName, columnName, classPK,
1239                            defaultData);
1240            }
1241    
1242            /**
1243            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1244            String, String, long, long[])}
1245            */
1246            public static long getData(java.lang.String className,
1247                    java.lang.String tableName, java.lang.String columnName, long classPK,
1248                    long defaultData)
1249                    throws com.liferay.portal.kernel.exception.PortalException,
1250                            com.liferay.portal.kernel.exception.SystemException {
1251                    return getService()
1252                                       .getData(className, tableName, columnName, classPK,
1253                            defaultData);
1254            }
1255    
1256            /**
1257            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1258            String, String, long, long[])}
1259            */
1260            public static long[] getData(java.lang.String className,
1261                    java.lang.String tableName, java.lang.String columnName, long classPK,
1262                    long[] defaultData)
1263                    throws com.liferay.portal.kernel.exception.PortalException,
1264                            com.liferay.portal.kernel.exception.SystemException {
1265                    return getService()
1266                                       .getData(className, tableName, columnName, classPK,
1267                            defaultData);
1268            }
1269    
1270            /**
1271            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1272            String, String, long, short[])}
1273            */
1274            public static short getData(java.lang.String className,
1275                    java.lang.String tableName, java.lang.String columnName, long classPK,
1276                    short defaultData)
1277                    throws com.liferay.portal.kernel.exception.PortalException,
1278                            com.liferay.portal.kernel.exception.SystemException {
1279                    return getService()
1280                                       .getData(className, tableName, columnName, classPK,
1281                            defaultData);
1282            }
1283    
1284            /**
1285            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1286            String, String, long, short[])}
1287            */
1288            public static short[] getData(java.lang.String className,
1289                    java.lang.String tableName, java.lang.String columnName, long classPK,
1290                    short[] defaultData)
1291                    throws com.liferay.portal.kernel.exception.PortalException,
1292                            com.liferay.portal.kernel.exception.SystemException {
1293                    return getService()
1294                                       .getData(className, tableName, columnName, classPK,
1295                            defaultData);
1296            }
1297    
1298            /**
1299            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1300            String, String, long, String[])}
1301            */
1302            public static java.lang.String getData(java.lang.String className,
1303                    java.lang.String tableName, java.lang.String columnName, long classPK,
1304                    java.lang.String defaultData)
1305                    throws com.liferay.portal.kernel.exception.PortalException,
1306                            com.liferay.portal.kernel.exception.SystemException {
1307                    return getService()
1308                                       .getData(className, tableName, columnName, classPK,
1309                            defaultData);
1310            }
1311    
1312            /**
1313            * @deprecated As of 6.1.0, replaced by {@link #getData(long, String,
1314            String, String, long, String[])}
1315            */
1316            public static java.lang.String[] getData(java.lang.String className,
1317                    java.lang.String tableName, java.lang.String columnName, long classPK,
1318                    java.lang.String[] defaultData)
1319                    throws com.liferay.portal.kernel.exception.PortalException,
1320                            com.liferay.portal.kernel.exception.SystemException {
1321                    return getService()
1322                                       .getData(className, tableName, columnName, classPK,
1323                            defaultData);
1324            }
1325    
1326            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(
1327                    long companyId, long classNameId, java.lang.String columnName,
1328                    int start, int end)
1329                    throws com.liferay.portal.kernel.exception.SystemException {
1330                    return getService()
1331                                       .getDefaultTableColumnValues(companyId, classNameId,
1332                            columnName, start, end);
1333            }
1334    
1335            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(
1336                    long companyId, java.lang.String className,
1337                    java.lang.String columnName, int start, int end)
1338                    throws com.liferay.portal.kernel.exception.SystemException {
1339                    return getService()
1340                                       .getDefaultTableColumnValues(companyId, className,
1341                            columnName, start, end);
1342            }
1343    
1344            public static int getDefaultTableColumnValuesCount(long companyId,
1345                    long classNameId, java.lang.String columnName)
1346                    throws com.liferay.portal.kernel.exception.SystemException {
1347                    return getService()
1348                                       .getDefaultTableColumnValuesCount(companyId, classNameId,
1349                            columnName);
1350            }
1351    
1352            public static int getDefaultTableColumnValuesCount(long companyId,
1353                    java.lang.String className, java.lang.String columnName)
1354                    throws com.liferay.portal.kernel.exception.SystemException {
1355                    return getService()
1356                                       .getDefaultTableColumnValuesCount(companyId, className,
1357                            columnName);
1358            }
1359    
1360            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1361                    long rowId) throws com.liferay.portal.kernel.exception.SystemException {
1362                    return getService().getRowValues(rowId);
1363            }
1364    
1365            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1366                    long rowId, int start, int end)
1367                    throws com.liferay.portal.kernel.exception.SystemException {
1368                    return getService().getRowValues(rowId, start, end);
1369            }
1370    
1371            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1372                    long companyId, long classNameId, java.lang.String tableName,
1373                    long classPK, int start, int end)
1374                    throws com.liferay.portal.kernel.exception.SystemException {
1375                    return getService()
1376                                       .getRowValues(companyId, classNameId, tableName, classPK,
1377                            start, end);
1378            }
1379    
1380            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1381                    long companyId, java.lang.String className, java.lang.String tableName,
1382                    long classPK, int start, int end)
1383                    throws com.liferay.portal.kernel.exception.SystemException {
1384                    return getService()
1385                                       .getRowValues(companyId, className, tableName, classPK,
1386                            start, end);
1387            }
1388    
1389            public static int getRowValuesCount(long rowId)
1390                    throws com.liferay.portal.kernel.exception.SystemException {
1391                    return getService().getRowValuesCount(rowId);
1392            }
1393    
1394            public static int getRowValuesCount(long companyId, long classNameId,
1395                    java.lang.String tableName, long classPK)
1396                    throws com.liferay.portal.kernel.exception.SystemException {
1397                    return getService()
1398                                       .getRowValuesCount(companyId, classNameId, tableName, classPK);
1399            }
1400    
1401            public static int getRowValuesCount(long companyId,
1402                    java.lang.String className, java.lang.String tableName, long classPK)
1403                    throws com.liferay.portal.kernel.exception.SystemException {
1404                    return getService()
1405                                       .getRowValuesCount(companyId, className, tableName, classPK);
1406            }
1407    
1408            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1409                    long valueId)
1410                    throws com.liferay.portal.kernel.exception.PortalException,
1411                            com.liferay.portal.kernel.exception.SystemException {
1412                    return getService().getValue(valueId);
1413            }
1414    
1415            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1416                    long columnId, long rowId)
1417                    throws com.liferay.portal.kernel.exception.PortalException,
1418                            com.liferay.portal.kernel.exception.SystemException {
1419                    return getService().getValue(columnId, rowId);
1420            }
1421    
1422            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1423                    long tableId, long columnId, long classPK)
1424                    throws com.liferay.portal.kernel.exception.SystemException {
1425                    return getService().getValue(tableId, columnId, classPK);
1426            }
1427    
1428            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1429                    long companyId, long classNameId, java.lang.String tableName,
1430                    java.lang.String columnName, long classPK)
1431                    throws com.liferay.portal.kernel.exception.SystemException {
1432                    return getService()
1433                                       .getValue(companyId, classNameId, tableName, columnName,
1434                            classPK);
1435            }
1436    
1437            /**
1438            * @deprecated As of 6.1.0, replaced by {@link #getValue(long, long, String,
1439            String, long)}
1440            */
1441            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1442                    long classNameId, java.lang.String tableName,
1443                    java.lang.String columnName, long classPK)
1444                    throws com.liferay.portal.kernel.exception.SystemException {
1445                    return getService().getValue(classNameId, tableName, columnName, classPK);
1446            }
1447    
1448            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1449                    long companyId, java.lang.String className, java.lang.String tableName,
1450                    java.lang.String columnName, long classPK)
1451                    throws com.liferay.portal.kernel.exception.SystemException {
1452                    return getService()
1453                                       .getValue(companyId, className, tableName, columnName,
1454                            classPK);
1455            }
1456    
1457            /**
1458            * @deprecated As of 6.1.0, replaced by {@link #getValue(long, String,
1459            String, String, long)}
1460            */
1461            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1462                    java.lang.String className, java.lang.String tableName,
1463                    java.lang.String columnName, long classPK)
1464                    throws com.liferay.portal.kernel.exception.SystemException {
1465                    return getService().getValue(className, tableName, columnName, classPK);
1466            }
1467    
1468            public static ExpandoValueLocalService getService() {
1469                    if (_service == null) {
1470                            _service = (ExpandoValueLocalService)PortalBeanLocatorUtil.locate(ExpandoValueLocalService.class.getName());
1471    
1472                            ReferenceRegistry.registerReference(ExpandoValueLocalServiceUtil.class,
1473                                    "_service");
1474                    }
1475    
1476                    return _service;
1477            }
1478    
1479            /**
1480             * @deprecated As of 6.2.0
1481             */
1482            public void setService(ExpandoValueLocalService service) {
1483            }
1484    
1485            private static ExpandoValueLocalService _service;
1486    }