com.liferay.portlet.ratings.model
Interface RatingsStatsModel

All Superinterfaces:
BaseModel, java.lang.Cloneable, java.lang.Comparable, java.io.Serializable
All Known Subinterfaces:
RatingsStats

public interface RatingsStatsModel
extends BaseModel

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface is a model that represents the RatingsStats table in the database.

Author:
Brian Wing Shun Chan
See Also:
RatingsStats, com.liferay.portlet.ratings.model.impl.RatingsStatsImpl, com.liferay.portlet.ratings.model.impl.RatingsStatsModelImpl

Method Summary
 double getAverageScore()
           
 java.lang.String getClassName()
           
 long getClassNameId()
           
 long getClassPK()
           
 long getPrimaryKey()
           
 long getStatsId()
           
 int getTotalEntries()
           
 double getTotalScore()
           
 void setAverageScore(double averageScore)
           
 void setClassNameId(long classNameId)
           
 void setClassPK(long classPK)
           
 void setPrimaryKey(long pk)
           
 void setStatsId(long statsId)
           
 void setTotalEntries(int totalEntries)
           
 void setTotalScore(double totalScore)
           
 RatingsStats toEscapedModel()
           
 
Methods inherited from interface com.liferay.portal.model.BaseModel
clone, getExpandoBridge, getPrimaryKeyObj, isEscapedModel, isNew, setEscapedModel, setNew
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getPrimaryKey

long getPrimaryKey()

setPrimaryKey

void setPrimaryKey(long pk)

getStatsId

long getStatsId()

setStatsId

void setStatsId(long statsId)

getClassName

java.lang.String getClassName()

getClassNameId

long getClassNameId()

setClassNameId

void setClassNameId(long classNameId)

getClassPK

long getClassPK()

setClassPK

void setClassPK(long classPK)

getTotalEntries

int getTotalEntries()

setTotalEntries

void setTotalEntries(int totalEntries)

getTotalScore

double getTotalScore()

setTotalScore

void setTotalScore(double totalScore)

getAverageScore

double getAverageScore()

setAverageScore

void setAverageScore(double averageScore)

toEscapedModel

RatingsStats toEscapedModel()