Package com.liferay.expando.kernel.model
Interface ExpandoColumnModel
- All Superinterfaces:
BaseModel<ExpandoColumn>
,ClassedModel
,Cloneable
,Comparable<ExpandoColumn>
,CTModel<ExpandoColumn>
,MVCCModel
,Serializable
,ShardedModel
- All Known Subinterfaces:
ExpandoColumn
,StagedExpandoColumn
- All Known Implementing Classes:
ExpandoColumnWrapper
@ProviderType
public interface ExpandoColumnModel
extends BaseModel<ExpandoColumn>, CTModel<ExpandoColumn>, MVCCModel, ShardedModel
The base model interface for the ExpandoColumn service. Represents a row in the "ExpandoColumn" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portlet.expando.model.impl.ExpandoColumnModelImpl
exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in com.liferay.portlet.expando.model.impl.ExpandoColumnImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the column ID of this expando column.long
Returns the company ID of this expando column.long
Returns the ct collection ID of this expando column.Returns the default data of this expando column.Returns the modified date of this expando column.long
Returns the mvcc version of this expando column.getName()
Returns the name of this expando column.long
Returns the primary key of this expando column.long
Returns the table ID of this expando column.int
getType()
Returns the type of this expando column.Returns the type settings of this expando column.void
setColumnId
(long columnId) Sets the column ID of this expando column.void
setCompanyId
(long companyId) Sets the company ID of this expando column.void
setCtCollectionId
(long ctCollectionId) Sets the ct collection ID of this expando column.void
setDefaultData
(String defaultData) Sets the default data of this expando column.void
setModifiedDate
(Date modifiedDate) Sets the modified date of this expando column.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this expando column.void
Sets the name of this expando column.void
setPrimaryKey
(long primaryKey) Sets the primary key of this expando column.void
setTableId
(long tableId) Sets the table ID of this expando column.void
setType
(int type) Sets the type of this expando column.void
setTypeSettings
(String typeSettings) Sets the type settings of this expando column.default String
Methods inherited from interface com.liferay.portal.kernel.model.BaseModel
clone, getAttributeGetterFunctions, getAttributeSetterBiConsumers, getExpandoBridge, getModelAttributes, getPrimaryKeyObj, isCachedModel, isEntityCacheEnabled, isEscapedModel, isFinderCacheEnabled, isNew, resetOriginalValues, setCachedModel, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setModelAttributes, setNew, setPrimaryKeyObj, toCacheModel, toEscapedModel, toUnescapedModel
Methods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassName
Methods inherited from interface java.lang.Comparable
compareTo
-
Method Details
-
getPrimaryKey
long getPrimaryKey()Returns the primary key of this expando column.- Specified by:
getPrimaryKey
in interfaceCTModel<ExpandoColumn>
- Returns:
- the primary key of this expando column
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this expando column.- Specified by:
setPrimaryKey
in interfaceCTModel<ExpandoColumn>
- Parameters:
primaryKey
- the primary key of this expando column
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this expando column.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this expando column
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this expando column.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this expando column
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this expando column.- Specified by:
getCtCollectionId
in interfaceCTModel<ExpandoColumn>
- Returns:
- the ct collection ID of this expando column
-
setCtCollectionId
void setCtCollectionId(long ctCollectionId) Sets the ct collection ID of this expando column.- Specified by:
setCtCollectionId
in interfaceCTModel<ExpandoColumn>
- Parameters:
ctCollectionId
- the ct collection ID of this expando column
-
getColumnId
long getColumnId()Returns the column ID of this expando column.- Returns:
- the column ID of this expando column
-
setColumnId
void setColumnId(long columnId) Sets the column ID of this expando column.- Parameters:
columnId
- the column ID of this expando column
-
getCompanyId
long getCompanyId()Returns the company ID of this expando column.- Specified by:
getCompanyId
in interfaceShardedModel
- Returns:
- the company ID of this expando column
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this expando column.- Specified by:
setCompanyId
in interfaceShardedModel
- Parameters:
companyId
- the company ID of this expando column
-
getModifiedDate
Date getModifiedDate()Returns the modified date of this expando column.- Returns:
- the modified date of this expando column
-
setModifiedDate
Sets the modified date of this expando column.- Parameters:
modifiedDate
- the modified date of this expando column
-
getTableId
long getTableId()Returns the table ID of this expando column.- Returns:
- the table ID of this expando column
-
setTableId
void setTableId(long tableId) Sets the table ID of this expando column.- Parameters:
tableId
- the table ID of this expando column
-
getName
Returns the name of this expando column.- Returns:
- the name of this expando column
-
setName
Sets the name of this expando column.- Parameters:
name
- the name of this expando column
-
getType
int getType()Returns the type of this expando column.- Returns:
- the type of this expando column
-
setType
void setType(int type) Sets the type of this expando column.- Parameters:
type
- the type of this expando column
-
getDefaultData
Returns the default data of this expando column.- Returns:
- the default data of this expando column
-
setDefaultData
Sets the default data of this expando column.- Parameters:
defaultData
- the default data of this expando column
-
getTypeSettings
Returns the type settings of this expando column.- Returns:
- the type settings of this expando column
-
setTypeSettings
Sets the type settings of this expando column.- Parameters:
typeSettings
- the type settings of this expando column
-
cloneWithOriginalValues
ExpandoColumn cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<ExpandoColumn>
-
toXmlString
-