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