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 TypeMethodDescriptionlong
Returns the company ID of this portal preference value.int
getIndex()
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.long
Returns the mvcc version of this portal preference value.Returns the namespace of this portal preference value.long
Returns the portal preferences ID of this portal preference value.long
Returns the portal preference value ID of this portal preference value.long
Returns the primary key of this portal preference value.Returns the small value of this portal preference value.void
setCompanyId
(long companyId) Sets the company ID of this portal preference value.void
setIndex
(int index) Sets the index of this portal preference value.void
Sets the key of this portal preference value.void
setLargeValue
(String largeValue) Sets the large value of this portal preference value.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this portal preference value.void
setNamespace
(String namespace) Sets the namespace of this portal preference value.void
setPortalPreferencesId
(long portalPreferencesId) Sets the portal preferences ID of this portal preference value.void
setPortalPreferenceValueId
(long portalPreferenceValueId) Sets the portal preference value ID of this portal preference value.void
setPrimaryKey
(long primaryKey) Sets the primary key of this portal preference value.void
setSmallValue
(String smallValue) Sets the small value of this portal preference value.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 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:
getMvccVersion
in 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:
setMvccVersion
in 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:
getCompanyId
in 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:
setCompanyId
in 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:
cloneWithOriginalValues
in interfaceBaseModel<PortalPreferenceValue>
-
toXmlString
-