Package com.liferay.expando.kernel.model
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 Summary
Modifier and TypeMethodDescriptionReturns the fully qualified class name of this expando value.longReturns the class name ID of this expando value.longReturns the class pk of this expando value.longReturns the column ID of this expando value.longReturns the company ID of this expando value.longReturns the ct collection ID of this expando value.getData()Returns the data of this expando value.longReturns the mvcc version of this expando value.longReturns the primary key of this expando value.longgetRowId()Returns the row ID of this expando value.longReturns the table ID of this expando value.longReturns the value ID of this expando value.voidsetClassName(String className) voidsetClassNameId(long classNameId) Sets the class name ID of this expando value.voidsetClassPK(long classPK) Sets the class pk of this expando value.voidsetColumnId(long columnId) Sets the column ID of this expando value.voidsetCompanyId(long companyId) Sets the company ID of this expando value.voidsetCtCollectionId(long ctCollectionId) Sets the ct collection ID of this expando value.voidSets the data of this expando value.voidsetMvccVersion(long mvccVersion) Sets the mvcc version of this expando value.voidsetPrimaryKey(long primaryKey) Sets the primary key of this expando value.voidsetRowId(long rowId) Sets the row ID of this expando value.voidsetTableId(long tableId) Sets the table ID of this expando value.voidsetValueId(long valueId) Sets the value ID of this expando 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 expando value.- Specified by:
getPrimaryKeyin interfaceCTModel<ExpandoValue>- Returns:
- the primary key of this expando value
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this expando value.- Specified by:
setPrimaryKeyin interfaceCTModel<ExpandoValue>- Parameters:
primaryKey- the primary key of this expando value
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this expando value.- Specified by:
getMvccVersionin interfaceMVCCModel- Returns:
- the mvcc version of this expando value
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this expando value.- Specified by:
setMvccVersionin interfaceMVCCModel- Parameters:
mvccVersion- the mvcc version of this expando value
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this expando value.- Specified by:
getCtCollectionIdin interfaceCTModel<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:
setCtCollectionIdin interfaceCTModel<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:
getCompanyIdin interfaceShardedModel- Returns:
- the company ID of this expando value
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this expando value.- Specified by:
setCompanyIdin interfaceShardedModel- 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:
getClassNamein interfaceTypedModel- Returns:
- the fully qualified class name of this expando value
-
setClassName
-
getClassNameId
long getClassNameId()Returns the class name ID of this expando value.- Specified by:
getClassNameIdin interfaceTypedModel- 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:
setClassNameIdin interfaceTypedModel- Parameters:
classNameId- the class name ID of this expando value
-
getClassPK
long getClassPK()Returns the class pk of this expando value.- Specified by:
getClassPKin interfaceAttachedModel- Returns:
- the class pk of this expando value
-
setClassPK
void setClassPK(long classPK) Sets the class pk of this expando value.- Specified by:
setClassPKin interfaceAttachedModel- Parameters:
classPK- the class pk of this expando value
-
getData
Returns the data of this expando value.- Returns:
- the data of this expando value
-
setData
Sets the data of this expando value.- Parameters:
data- the data of this expando value
-
cloneWithOriginalValues
ExpandoValue cloneWithOriginalValues()- Specified by:
cloneWithOriginalValuesin interfaceBaseModel<ExpandoValue>
-
toXmlString
-