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 Details

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this expando column.
      Specified by:
      getPrimaryKey in interface CTModel<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 interface CTModel<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 interface MVCCModel
      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 interface MVCCModel
      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 interface CTModel<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 interface CTModel<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 interface ShardedModel
      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 interface ShardedModel
      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

      void setModifiedDate(Date modifiedDate)
      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

      @AutoEscape String getName()
      Returns the name of this expando column.
      Returns:
      the name of this expando column
    • setName

      void setName(String name)
      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

      @AutoEscape String getDefaultData()
      Returns the default data of this expando column.
      Returns:
      the default data of this expando column
    • setDefaultData

      void setDefaultData(String defaultData)
      Sets the default data of this expando column.
      Parameters:
      defaultData - the default data of this expando column
    • getTypeSettings

      @AutoEscape String getTypeSettings()
      Returns the type settings of this expando column.
      Returns:
      the type settings of this expando column
    • setTypeSettings

      void setTypeSettings(String typeSettings)
      Sets the type settings of this expando column.
      Parameters:
      typeSettings - the type settings of this expando column
    • cloneWithOriginalValues

      ExpandoColumn cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface BaseModel<ExpandoColumn>
    • toXmlString

      default String toXmlString()