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 TypeMethodDescriptionlongReturns the column ID of this expando column.longReturns the company ID of this expando column.longReturns the ct collection ID of this expando column.Returns the default data of this expando column.Returns the modified date of this expando column.longReturns the mvcc version of this expando column.getName()Returns the name of this expando column.longReturns the primary key of this expando column.longReturns the table ID of this expando column.intgetType()Returns the type of this expando column.Returns the type settings of this expando column.voidsetColumnId(long columnId) Sets the column ID of this expando column.voidsetCompanyId(long companyId) Sets the company ID of this expando column.voidsetCtCollectionId(long ctCollectionId) Sets the ct collection ID of this expando column.voidsetDefaultData(String defaultData) Sets the default data of this expando column.voidsetModifiedDate(Date modifiedDate) Sets the modified date of this expando column.voidsetMvccVersion(long mvccVersion) Sets the mvcc version of this expando column.voidSets the name of this expando column.voidsetPrimaryKey(long primaryKey) Sets the primary key of this expando column.voidsetTableId(long tableId) Sets the table ID of this expando column.voidsetType(int type) Sets the type of this expando column.voidsetTypeSettings(String typeSettings) Sets the type settings of this expando column.default StringMethods 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, toUnescapedModelMethods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassNameMethods inherited from interface java.lang.Comparable
compareTo
-
Method Details
-
getPrimaryKey
long getPrimaryKey()Returns the primary key of this expando column.- Specified by:
getPrimaryKeyin 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:
setPrimaryKeyin interfaceCTModel<ExpandoColumn>- Parameters:
primaryKey- the primary key of this expando column
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this expando column.- Specified by:
getMvccVersionin interfaceMVCCModel- Returns:
- the mvcc version of this expando column
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this expando column.- Specified by:
setMvccVersionin interfaceMVCCModel- Parameters:
mvccVersion- the mvcc version of this expando column
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this expando column.- Specified by:
getCtCollectionIdin 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:
setCtCollectionIdin 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:
getCompanyIdin interfaceShardedModel- Returns:
- the company ID of this expando column
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this expando column.- Specified by:
setCompanyIdin 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:
cloneWithOriginalValuesin interfaceBaseModel<ExpandoColumn>
-
toXmlString
-