Interface ExpandoValueModel

All Superinterfaces:
AttachedModel, BaseModel<ExpandoValue>, ClassedModel, Cloneable, Comparable<ExpandoValue>, CTModel<ExpandoValue>, MVCCModel, Serializable, ShardedModel, TypedModel
All Known Subinterfaces:
ExpandoValue
All Known Implementing Classes:
ExpandoValueWrapper

@ProviderType public interface ExpandoValueModel extends AttachedModel, BaseModel<ExpandoValue>, CTModel<ExpandoValue>, MVCCModel, ShardedModel
The base model interface for the ExpandoValue service. Represents a row in the "ExpandoValue" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation com.liferay.portlet.expando.model.impl.ExpandoValueModelImpl 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.ExpandoValueImpl.

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Method Details

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this expando value.
      Specified by:
      getPrimaryKey in interface CTModel<ExpandoValue>
      Returns:
      the primary key of this expando value
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this expando value.
      Specified by:
      setPrimaryKey in interface CTModel<ExpandoValue>
      Parameters:
      primaryKey - the primary key of this expando value
    • getMvccVersion

      long getMvccVersion()
      Returns the mvcc version of this expando value.
      Specified by:
      getMvccVersion in interface MVCCModel
      Returns:
      the mvcc version of this expando value
    • setMvccVersion

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this expando value.
      Specified by:
      setMvccVersion in interface MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this expando value
    • getCtCollectionId

      long getCtCollectionId()
      Returns the ct collection ID of this expando value.
      Specified by:
      getCtCollectionId in interface CTModel<ExpandoValue>
      Returns:
      the ct collection ID of this expando value
    • setCtCollectionId

      void setCtCollectionId(long ctCollectionId)
      Sets the ct collection ID of this expando value.
      Specified by:
      setCtCollectionId in interface CTModel<ExpandoValue>
      Parameters:
      ctCollectionId - the ct collection ID of this expando value
    • getValueId

      long getValueId()
      Returns the value ID of this expando value.
      Returns:
      the value ID of this expando value
    • setValueId

      void setValueId(long valueId)
      Sets the value ID of this expando value.
      Parameters:
      valueId - the value ID of this expando value
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this expando value.
      Specified by:
      getCompanyId in interface ShardedModel
      Returns:
      the company ID of this expando value
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this expando value.
      Specified by:
      setCompanyId in interface ShardedModel
      Parameters:
      companyId - the company ID of this expando value
    • getTableId

      long getTableId()
      Returns the table ID of this expando value.
      Returns:
      the table ID of this expando value
    • setTableId

      void setTableId(long tableId)
      Sets the table ID of this expando value.
      Parameters:
      tableId - the table ID of this expando value
    • getColumnId

      long getColumnId()
      Returns the column ID of this expando value.
      Returns:
      the column ID of this expando value
    • setColumnId

      void setColumnId(long columnId)
      Sets the column ID of this expando value.
      Parameters:
      columnId - the column ID of this expando value
    • getRowId

      long getRowId()
      Returns the row ID of this expando value.
      Returns:
      the row ID of this expando value
    • setRowId

      void setRowId(long rowId)
      Sets the row ID of this expando value.
      Parameters:
      rowId - the row ID of this expando value
    • getClassName

      String getClassName()
      Returns the fully qualified class name of this expando value.
      Specified by:
      getClassName in interface TypedModel
      Returns:
      the fully qualified class name of this expando value
    • setClassName

      void setClassName(String className)
    • getClassNameId

      long getClassNameId()
      Returns the class name ID of this expando value.
      Specified by:
      getClassNameId in interface TypedModel
      Returns:
      the class name ID of this expando value
    • setClassNameId

      void setClassNameId(long classNameId)
      Sets the class name ID of this expando value.
      Specified by:
      setClassNameId in interface TypedModel
      Parameters:
      classNameId - the class name ID of this expando value
    • getClassPK

      long getClassPK()
      Returns the class pk of this expando value.
      Specified by:
      getClassPK in interface AttachedModel
      Returns:
      the class pk of this expando value
    • setClassPK

      void setClassPK(long classPK)
      Sets the class pk of this expando value.
      Specified by:
      setClassPK in interface AttachedModel
      Parameters:
      classPK - the class pk of this expando value
    • getData

      @AutoEscape String getData()
      Returns the data of this expando value.
      Returns:
      the data of this expando value
    • setData

      void setData(String data)
      Sets the data of this expando value.
      Parameters:
      data - the data of this expando value
    • cloneWithOriginalValues

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

      default String toXmlString()