Class VCVersionItem
java.lang.Object
de.uplanet.lucy.server.auxiliaries.versionmanager.VCVersionItem
Semantic version item.
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionGet the additional requirements of the semantic version item as text.getAdditionalRequirements(boolean p_bHtmlEncode) Get the additional requirements of the semantic version as text, optionally html encoded.Get the custom version of the semantic version item.getDate()Get the date of the semantic version item.Get the descriptions of the semantic version item as text.getDescriptions(boolean p_bHtmlEncode) Get the descriptions of the semantic version item as text, optionally html encoded.Get the formatted version string of the semantic version item.intGet the major version of the semantic version item.intGet the minor version of the semantic version item.Get the minimum Intrexx version of the semantic version item.intGet the patch version of the semantic version item.Get the pre-release version of the semantic version item. 
- 
Constructor Details
- 
VCVersionItem
public VCVersionItem(de.uplanet.lucy.versionmanager.VersionItem p_versionItem)  
 - 
 - 
Method Details
- 
getMajorVersion
public int getMajorVersion()Get the major version of the semantic version item.- Returns:
 - The major version.
 
 - 
getMinorVersion
public int getMinorVersion()Get the minor version of the semantic version item.- Returns:
 - The minor version.
 
 - 
getPatchVersion
public int getPatchVersion()Get the patch version of the semantic version item.- Returns:
 - The patch version.
 
 - 
getPreReleaseVersion
Get the pre-release version of the semantic version item.- Returns:
 - The pre-release version or 
nullif no pre-release version is defined. 
 - 
getCustomVersion
Get the custom version of the semantic version item.- Returns:
 - The custom version or 
nullif no custom version is defined. 
 - 
getDate
Get the date of the semantic version item.- Returns:
 - The date in UTC or 
nullif no date is defined. 
 - 
getMinProductVersion
Get the minimum Intrexx version of the semantic version item.- Returns:
 - The minimum Intrexx version or 
nullif no minimum Intrexx version is defined. 
 - 
getAdditionalRequirements
Get the additional requirements of the semantic version item as text.- Returns:
 - A map of additional requirements with the language as key and the requirements text as value or
    
nullif no additional requirements are defined. 
 - 
getAdditionalRequirements
Get the additional requirements of the semantic version as text, optionally html encoded.- Parameters:
 p_bHtmlEncode-trueif the additional requirements should be html encoded,falseotherwise.- Returns:
 - A map of additional requirements with the language as key and the requirements text as value or
    
nullif no additional requirements are defined. 
 - 
getDescriptions
Get the descriptions of the semantic version item as text.- Returns:
 - A map of descriptions with the language as key and the description text as value or
    
nullif no descriptions are defined. 
 - 
getDescriptions
Get the descriptions of the semantic version item as text, optionally html encoded.- Parameters:
 p_bHtmlEncode-trueif the description should be html encoded,falseotherwise.- Returns:
 - A map of descriptions with the language as key and the description text as value or
    
nullif no descriptions are defined. 
 - 
getFormattedVersion
Get the formatted version string of the semantic version item.- Returns:
 - The formatted version.
 
 
 -