Package com.liferay.portal.kernel.model
Interface CountryLocalizationModel
- All Superinterfaces:
BaseModel<CountryLocalization>
,ClassedModel
,Cloneable
,Comparable<CountryLocalization>
,CTModel<CountryLocalization>
,MVCCModel
,Serializable
,ShardedModel
- All Known Subinterfaces:
CountryLocalization
- All Known Implementing Classes:
CountryLocalizationWrapper
@ProviderType
public interface CountryLocalizationModel
extends BaseModel<CountryLocalization>, CTModel<CountryLocalization>, MVCCModel, ShardedModel
The base model interface for the CountryLocalization service. Represents a row in the "CountryLocalization" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portal.model.impl.CountryLocalizationModelImpl
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.CountryLocalizationImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the company ID of this country localization.long
Returns the country ID of this country localization.long
Returns the country localization ID of this country localization.long
Returns the ct collection ID of this country localization.Returns the language ID of this country localization.long
Returns the mvcc version of this country localization.long
Returns the primary key of this country localization.getTitle()
Returns the title of this country localization.void
setCompanyId
(long companyId) Sets the company ID of this country localization.void
setCountryId
(long countryId) Sets the country ID of this country localization.void
setCountryLocalizationId
(long countryLocalizationId) Sets the country localization ID of this country localization.void
setCtCollectionId
(long ctCollectionId) Sets the ct collection ID of this country localization.void
setLanguageId
(String languageId) Sets the language ID of this country localization.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this country localization.void
setPrimaryKey
(long primaryKey) Sets the primary key of this country localization.void
Sets the title of this country localization.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 country localization.- Specified by:
getPrimaryKey
in interfaceCTModel<CountryLocalization>
- Returns:
- the primary key of this country localization
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this country localization.- Specified by:
setPrimaryKey
in interfaceCTModel<CountryLocalization>
- Parameters:
primaryKey
- the primary key of this country localization
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this country localization.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this country localization
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this country localization.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this country localization
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this country localization.- Specified by:
getCtCollectionId
in interfaceCTModel<CountryLocalization>
- Returns:
- the ct collection ID of this country localization
-
setCtCollectionId
void setCtCollectionId(long ctCollectionId) Sets the ct collection ID of this country localization.- Specified by:
setCtCollectionId
in interfaceCTModel<CountryLocalization>
- Parameters:
ctCollectionId
- the ct collection ID of this country localization
-
getCountryLocalizationId
long getCountryLocalizationId()Returns the country localization ID of this country localization.- Returns:
- the country localization ID of this country localization
-
setCountryLocalizationId
void setCountryLocalizationId(long countryLocalizationId) Sets the country localization ID of this country localization.- Parameters:
countryLocalizationId
- the country localization ID of this country localization
-
getCompanyId
long getCompanyId()Returns the company ID of this country localization.- Specified by:
getCompanyId
in interfaceShardedModel
- Returns:
- the company ID of this country localization
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this country localization.- Specified by:
setCompanyId
in interfaceShardedModel
- Parameters:
companyId
- the company ID of this country localization
-
getCountryId
long getCountryId()Returns the country ID of this country localization.- Returns:
- the country ID of this country localization
-
setCountryId
void setCountryId(long countryId) Sets the country ID of this country localization.- Parameters:
countryId
- the country ID of this country localization
-
getLanguageId
Returns the language ID of this country localization.- Returns:
- the language ID of this country localization
-
setLanguageId
Sets the language ID of this country localization.- Parameters:
languageId
- the language ID of this country localization
-
getTitle
Returns the title of this country localization.- Returns:
- the title of this country localization
-
setTitle
Sets the title of this country localization.- Parameters:
title
- the title of this country localization
-
cloneWithOriginalValues
CountryLocalization cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<CountryLocalization>
-
toXmlString
-