Package com.liferay.portal.kernel.model
Interface PortalPreferenceValueModel
- All Superinterfaces:
BaseModel<PortalPreferenceValue>,ClassedModel,Cloneable,Comparable<PortalPreferenceValue>,MVCCModel,Serializable,ShardedModel
- All Known Subinterfaces:
PortalPreferenceValue
- All Known Implementing Classes:
PortalPreferenceValueWrapper
@ProviderType
public interface PortalPreferenceValueModel
extends BaseModel<PortalPreferenceValue>, MVCCModel, ShardedModel
The base model interface for the PortalPreferenceValue service. Represents a row in the "PortalPreferenceValue" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portal.model.impl.PortalPreferenceValueModelImpl 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.portal.model.impl.PortalPreferenceValueImpl.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the company ID of this portal preference value.intgetIndex()Returns the index of this portal preference value.getKey()Returns the key of this portal preference value.Returns the large value of this portal preference value.longReturns the mvcc version of this portal preference value.Returns the namespace of this portal preference value.longReturns the portal preferences ID of this portal preference value.longReturns the portal preference value ID of this portal preference value.longReturns the primary key of this portal preference value.Returns the small value of this portal preference value.voidsetCompanyId(long companyId) Sets the company ID of this portal preference value.voidsetIndex(int index) Sets the index of this portal preference value.voidSets the key of this portal preference value.voidsetLargeValue(String largeValue) Sets the large value of this portal preference value.voidsetMvccVersion(long mvccVersion) Sets the mvcc version of this portal preference value.voidsetNamespace(String namespace) Sets the namespace of this portal preference value.voidsetPortalPreferencesId(long portalPreferencesId) Sets the portal preferences ID of this portal preference value.voidsetPortalPreferenceValueId(long portalPreferenceValueId) Sets the portal preference value ID of this portal preference value.voidsetPrimaryKey(long primaryKey) Sets the primary key of this portal preference value.voidsetSmallValue(String smallValue) Sets the small value of this portal preference value.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 portal preference value.- Returns:
- the primary key of this portal preference value
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this portal preference value.- Parameters:
primaryKey- the primary key of this portal preference value
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this portal preference value.- Specified by:
getMvccVersionin interfaceMVCCModel- Returns:
- the mvcc version of this portal preference value
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this portal preference value.- Specified by:
setMvccVersionin interfaceMVCCModel- Parameters:
mvccVersion- the mvcc version of this portal preference value
-
getPortalPreferenceValueId
long getPortalPreferenceValueId()Returns the portal preference value ID of this portal preference value.- Returns:
- the portal preference value ID of this portal preference value
-
setPortalPreferenceValueId
void setPortalPreferenceValueId(long portalPreferenceValueId) Sets the portal preference value ID of this portal preference value.- Parameters:
portalPreferenceValueId- the portal preference value ID of this portal preference value
-
getCompanyId
long getCompanyId()Returns the company ID of this portal preference value.- Specified by:
getCompanyIdin interfaceShardedModel- Returns:
- the company ID of this portal preference value
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this portal preference value.- Specified by:
setCompanyIdin interfaceShardedModel- Parameters:
companyId- the company ID of this portal preference value
-
getPortalPreferencesId
long getPortalPreferencesId()Returns the portal preferences ID of this portal preference value.- Returns:
- the portal preferences ID of this portal preference value
-
setPortalPreferencesId
void setPortalPreferencesId(long portalPreferencesId) Sets the portal preferences ID of this portal preference value.- Parameters:
portalPreferencesId- the portal preferences ID of this portal preference value
-
getIndex
int getIndex()Returns the index of this portal preference value.- Returns:
- the index of this portal preference value
-
setIndex
void setIndex(int index) Sets the index of this portal preference value.- Parameters:
index- the index of this portal preference value
-
getKey
Returns the key of this portal preference value.- Returns:
- the key of this portal preference value
-
setKey
Sets the key of this portal preference value.- Parameters:
key- the key of this portal preference value
-
getLargeValue
Returns the large value of this portal preference value.- Returns:
- the large value of this portal preference value
-
setLargeValue
Sets the large value of this portal preference value.- Parameters:
largeValue- the large value of this portal preference value
-
getNamespace
Returns the namespace of this portal preference value.- Returns:
- the namespace of this portal preference value
-
setNamespace
Sets the namespace of this portal preference value.- Parameters:
namespace- the namespace of this portal preference value
-
getSmallValue
Returns the small value of this portal preference value.- Returns:
- the small value of this portal preference value
-
setSmallValue
Sets the small value of this portal preference value.- Parameters:
smallValue- the small value of this portal preference value
-
cloneWithOriginalValues
PortalPreferenceValue cloneWithOriginalValues()- Specified by:
cloneWithOriginalValuesin interfaceBaseModel<PortalPreferenceValue>
-
toXmlString
-