Interface CTScoreModel

All Superinterfaces:
com.liferay.portal.kernel.model.BaseModel<CTScore>, com.liferay.portal.kernel.model.ClassedModel, Cloneable, Comparable<CTScore>, com.liferay.portal.kernel.model.MVCCModel, Serializable, com.liferay.portal.kernel.model.ShardedModel
All Known Subinterfaces:
CTScore
All Known Implementing Classes:
CTScoreWrapper

@ProviderType public interface CTScoreModel extends com.liferay.portal.kernel.model.BaseModel<CTScore>, com.liferay.portal.kernel.model.MVCCModel, com.liferay.portal.kernel.model.ShardedModel
The base model interface for the CTScore service. Represents a row in the "CTScore" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation com.liferay.change.tracking.model.impl.CTScoreModelImpl 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.change.tracking.model.impl.CTScoreImpl.

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the company ID of this ct score.
    long
    Returns the ct collection ID of this ct score.
    long
    Returns the ct score ID of this ct score.
    long
    Returns the mvcc version of this ct score.
    long
    Returns the primary key of this ct score.
    int
    Returns the score of this ct score.
    void
    setCompanyId(long companyId)
    Sets the company ID of this ct score.
    void
    setCtCollectionId(long ctCollectionId)
    Sets the ct collection ID of this ct score.
    void
    setCtScoreId(long ctScoreId)
    Sets the ct score ID of this ct score.
    void
    setMvccVersion(long mvccVersion)
    Sets the mvcc version of this ct score.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this ct score.
    void
    setScore(int score)
    Sets the score of this ct score.
    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 ct score.
      Returns:
      the primary key of this ct score
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this ct score.
      Parameters:
      primaryKey - the primary key of this ct score
    • getMvccVersion

      long getMvccVersion()
      Returns the mvcc version of this ct score.
      Specified by:
      getMvccVersion in interface com.liferay.portal.kernel.model.MVCCModel
      Returns:
      the mvcc version of this ct score
    • setMvccVersion

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this ct score.
      Specified by:
      setMvccVersion in interface com.liferay.portal.kernel.model.MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this ct score
    • getCtScoreId

      long getCtScoreId()
      Returns the ct score ID of this ct score.
      Returns:
      the ct score ID of this ct score
    • setCtScoreId

      void setCtScoreId(long ctScoreId)
      Sets the ct score ID of this ct score.
      Parameters:
      ctScoreId - the ct score ID of this ct score
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this ct score.
      Specified by:
      getCompanyId in interface com.liferay.portal.kernel.model.ShardedModel
      Returns:
      the company ID of this ct score
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this ct score.
      Specified by:
      setCompanyId in interface com.liferay.portal.kernel.model.ShardedModel
      Parameters:
      companyId - the company ID of this ct score
    • getCtCollectionId

      long getCtCollectionId()
      Returns the ct collection ID of this ct score.
      Returns:
      the ct collection ID of this ct score
    • setCtCollectionId

      void setCtCollectionId(long ctCollectionId)
      Sets the ct collection ID of this ct score.
      Parameters:
      ctCollectionId - the ct collection ID of this ct score
    • getScore

      int getScore()
      Returns the score of this ct score.
      Returns:
      the score of this ct score
    • setScore

      void setScore(int score)
      Sets the score of this ct score.
      Parameters:
      score - the score of this ct score
    • cloneWithOriginalValues

      CTScore cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface com.liferay.portal.kernel.model.BaseModel<CTScore>
    • toXmlString

      default String toXmlString()