Liferay 6.0.5

com.liferay.portlet.expando.model
Interface ExpandoValue

All Superinterfaces:
BaseModel<ExpandoValue>, Cloneable, Comparable<ExpandoValue>, ExpandoValueModel, Serializable
All Known Implementing Classes:
ExpandoValueImpl, ExpandoValueWrapper

public interface ExpandoValue
extends ExpandoValueModel

The model interface for the ExpandoValue service. Represents a row in the "ExpandoValue" database table, with each column mapped to a property of this class.

Never modify this interface directly. Add methods to ExpandoValueImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

Never reference this interface directly. All methods that expect a expando value model instance should use the ExpandoValue interface instead.

See Also:
ExpandoValueModel, ExpandoValueImpl, ExpandoValueModelImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 boolean getBoolean()
           
 boolean[] getBooleanArray()
           
 Date getDate()
           
 Date[] getDateArray()
           
 double getDouble()
           
 double[] getDoubleArray()
           
 float getFloat()
           
 float[] getFloatArray()
           
 int getInteger()
           
 int[] getIntegerArray()
           
 long getLong()
           
 long[] getLongArray()
           
 short getShort()
           
 short[] getShortArray()
           
 String getString()
           
 String[] getStringArray()
           
 void setBoolean(boolean data)
           
 void setBooleanArray(boolean[] data)
           
 void setDate(Date data)
           
 void setDateArray(Date[] data)
           
 void setDouble(double data)
           
 void setDoubleArray(double[] data)
           
 void setFloat(float data)
           
 void setFloatArray(float[] data)
           
 void setInteger(int data)
           
 void setIntegerArray(int[] data)
           
 void setLong(long data)
           
 void setLongArray(long[] data)
           
 void setShort(short data)
           
 void setShortArray(short[] data)
           
 void setString(String data)
           
 void setStringArray(String[] data)
           
 
Methods inherited from interface com.liferay.portlet.expando.model.ExpandoValueModel
clone, compareTo, getClassName, getClassNameId, getClassPK, getColumnId, getCompanyId, getData, getExpandoBridge, getPrimaryKey, getPrimaryKeyObj, getRowId, getTableId, getValueId, hashCode, isCachedModel, isEscapedModel, isNew, setCachedModel, setClassNameId, setClassPK, setColumnId, setCompanyId, setData, setEscapedModel, setExpandoBridgeAttributes, setNew, setPrimaryKey, setRowId, setTableId, setValueId, toEscapedModel, toString, toXmlString
 

Method Detail

getBoolean

boolean getBoolean()
                   throws PortalException,
                          SystemException
Throws:
PortalException
SystemException

getBooleanArray

boolean[] getBooleanArray()
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

getDate

Date getDate()
             throws PortalException,
                    SystemException
Throws:
PortalException
SystemException

getDateArray

Date[] getDateArray()
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

getDouble

double getDouble()
                 throws PortalException,
                        SystemException
Throws:
PortalException
SystemException

getDoubleArray

double[] getDoubleArray()
                        throws PortalException,
                               SystemException
Throws:
PortalException
SystemException

getFloat

float getFloat()
               throws PortalException,
                      SystemException
Throws:
PortalException
SystemException

getFloatArray

float[] getFloatArray()
                      throws PortalException,
                             SystemException
Throws:
PortalException
SystemException

getInteger

int getInteger()
               throws PortalException,
                      SystemException
Throws:
PortalException
SystemException

getIntegerArray

int[] getIntegerArray()
                      throws PortalException,
                             SystemException
Throws:
PortalException
SystemException

getLong

long getLong()
             throws PortalException,
                    SystemException
Throws:
PortalException
SystemException

getLongArray

long[] getLongArray()
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

getShort

short getShort()
               throws PortalException,
                      SystemException
Throws:
PortalException
SystemException

getShortArray

short[] getShortArray()
                      throws PortalException,
                             SystemException
Throws:
PortalException
SystemException

getString

String getString()
                 throws PortalException,
                        SystemException
Throws:
PortalException
SystemException

getStringArray

String[] getStringArray()
                        throws PortalException,
                               SystemException
Throws:
PortalException
SystemException

setBoolean

void setBoolean(boolean data)
                throws PortalException,
                       SystemException
Throws:
PortalException
SystemException

setBooleanArray

void setBooleanArray(boolean[] data)
                     throws PortalException,
                            SystemException
Throws:
PortalException
SystemException

setDate

void setDate(Date data)
             throws PortalException,
                    SystemException
Throws:
PortalException
SystemException

setDateArray

void setDateArray(Date[] data)
                  throws PortalException,
                         SystemException
Throws:
PortalException
SystemException

setDouble

void setDouble(double data)
               throws PortalException,
                      SystemException
Throws:
PortalException
SystemException

setDoubleArray

void setDoubleArray(double[] data)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

setFloat

void setFloat(float data)
              throws PortalException,
                     SystemException
Throws:
PortalException
SystemException

setFloatArray

void setFloatArray(float[] data)
                   throws PortalException,
                          SystemException
Throws:
PortalException
SystemException

setInteger

void setInteger(int data)
                throws PortalException,
                       SystemException
Throws:
PortalException
SystemException

setIntegerArray

void setIntegerArray(int[] data)
                     throws PortalException,
                            SystemException
Throws:
PortalException
SystemException

setLong

void setLong(long data)
             throws PortalException,
                    SystemException
Throws:
PortalException
SystemException

setLongArray

void setLongArray(long[] data)
                  throws PortalException,
                         SystemException
Throws:
PortalException
SystemException

setShort

void setShort(short data)
              throws PortalException,
                     SystemException
Throws:
PortalException
SystemException

setShortArray

void setShortArray(short[] data)
                   throws PortalException,
                          SystemException
Throws:
PortalException
SystemException

setString

void setString(String data)
               throws PortalException,
                      SystemException
Throws:
PortalException
SystemException

setStringArray

void setStringArray(String[] data)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

Liferay 6.0.5