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