1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.expando.model;
16  
17  /**
18   * <a href="ExpandoValue.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This interface is a model that represents the ExpandoValue table in the
27   * database.
28   * </p>
29   *
30   * <p>
31   * Customize {@link com.liferay.portlet.expando.model.impl.ExpandoValueImpl} and rerun the
32   * ServiceBuilder to generate the new methods.
33   * </p>
34   *
35   * @author    Brian Wing Shun Chan
36   * @see       ExpandoValueModel
37   * @see       com.liferay.portlet.expando.model.impl.ExpandoValueImpl
38   * @see       com.liferay.portlet.expando.model.impl.ExpandoValueModelImpl
39   * @generated
40   */
41  public interface ExpandoValue extends ExpandoValueModel {
42      public boolean getBoolean()
43          throws com.liferay.portal.PortalException,
44              com.liferay.portal.SystemException;
45  
46      public boolean[] getBooleanArray()
47          throws com.liferay.portal.PortalException,
48              com.liferay.portal.SystemException;
49  
50      public java.util.Date getDate()
51          throws com.liferay.portal.PortalException,
52              com.liferay.portal.SystemException;
53  
54      public java.util.Date[] getDateArray()
55          throws com.liferay.portal.PortalException,
56              com.liferay.portal.SystemException;
57  
58      public double getDouble()
59          throws com.liferay.portal.PortalException,
60              com.liferay.portal.SystemException;
61  
62      public double[] getDoubleArray()
63          throws com.liferay.portal.PortalException,
64              com.liferay.portal.SystemException;
65  
66      public float getFloat()
67          throws com.liferay.portal.PortalException,
68              com.liferay.portal.SystemException;
69  
70      public float[] getFloatArray()
71          throws com.liferay.portal.PortalException,
72              com.liferay.portal.SystemException;
73  
74      public int getInteger()
75          throws com.liferay.portal.PortalException,
76              com.liferay.portal.SystemException;
77  
78      public int[] getIntegerArray()
79          throws com.liferay.portal.PortalException,
80              com.liferay.portal.SystemException;
81  
82      public long getLong()
83          throws com.liferay.portal.PortalException,
84              com.liferay.portal.SystemException;
85  
86      public long[] getLongArray()
87          throws com.liferay.portal.PortalException,
88              com.liferay.portal.SystemException;
89  
90      public short getShort()
91          throws com.liferay.portal.PortalException,
92              com.liferay.portal.SystemException;
93  
94      public short[] getShortArray()
95          throws com.liferay.portal.PortalException,
96              com.liferay.portal.SystemException;
97  
98      public java.lang.String getString()
99          throws com.liferay.portal.PortalException,
100             com.liferay.portal.SystemException;
101 
102     public java.lang.String[] getStringArray()
103         throws com.liferay.portal.PortalException,
104             com.liferay.portal.SystemException;
105 
106     public void setBoolean(boolean data)
107         throws com.liferay.portal.PortalException,
108             com.liferay.portal.SystemException;
109 
110     public void setBooleanArray(boolean[] data)
111         throws com.liferay.portal.PortalException,
112             com.liferay.portal.SystemException;
113 
114     public void setDate(java.util.Date data)
115         throws com.liferay.portal.PortalException,
116             com.liferay.portal.SystemException;
117 
118     public void setDateArray(java.util.Date[] data)
119         throws com.liferay.portal.PortalException,
120             com.liferay.portal.SystemException;
121 
122     public void setDouble(double data)
123         throws com.liferay.portal.PortalException,
124             com.liferay.portal.SystemException;
125 
126     public void setDoubleArray(double[] data)
127         throws com.liferay.portal.PortalException,
128             com.liferay.portal.SystemException;
129 
130     public void setFloat(float data)
131         throws com.liferay.portal.PortalException,
132             com.liferay.portal.SystemException;
133 
134     public void setFloatArray(float[] data)
135         throws com.liferay.portal.PortalException,
136             com.liferay.portal.SystemException;
137 
138     public void setInteger(int data)
139         throws com.liferay.portal.PortalException,
140             com.liferay.portal.SystemException;
141 
142     public void setIntegerArray(int[] data)
143         throws com.liferay.portal.PortalException,
144             com.liferay.portal.SystemException;
145 
146     public void setLong(long data)
147         throws com.liferay.portal.PortalException,
148             com.liferay.portal.SystemException;
149 
150     public void setLongArray(long[] data)
151         throws com.liferay.portal.PortalException,
152             com.liferay.portal.SystemException;
153 
154     public void setShort(short data)
155         throws com.liferay.portal.PortalException,
156             com.liferay.portal.SystemException;
157 
158     public void setShortArray(short[] data)
159         throws com.liferay.portal.PortalException,
160             com.liferay.portal.SystemException;
161 
162     public void setString(java.lang.String data)
163         throws com.liferay.portal.PortalException,
164             com.liferay.portal.SystemException;
165 
166     public void setStringArray(java.lang.String[] data)
167         throws com.liferay.portal.PortalException,
168             com.liferay.portal.SystemException;
169 }