Class VCVersion
- java.lang.Object
-
- de.uplanet.lucy.server.auxiliaries.VCVersion
-
@VelocityCallable("singleton") @VelocityVariable("IntrexxVersion") public final class VCVersion extends Object
-
-
Constructor Summary
Constructors Constructor Description VCVersion()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCodeName()Returns the code name of this versionStringgetDisplayFull()StringgetDisplayShort()Returns the display string of this version.StringgetVersionIdentifier()Returns the version identifier.StringgetVersionMajor()Returns the major version.StringgetVersionMinor()Returns the minor version.intgetVersionPatch()Returns the patch level.StringgetVersionString()booleanisBeta()Check if this Intrexx version is a beta version.
-
-
-
Method Detail
-
isBeta
public boolean isBeta()
Check if this Intrexx version is a beta version.- Returns:
- Returns
trueif current Intrexx Version has beta status otherwisefalse.
-
getVersionString
public String getVersionString()
- Returns:
- A string version of the Intrexx version.
-
getDisplayShort
public String getDisplayShort()
Returns the display string of this version.- Returns:
- Display version
-
getDisplayFull
public String getDisplayFull()
- Returns:
- A "human readable" version of the Intrexx version with code name.
-
getVersionMajor
public String getVersionMajor()
Returns the major version.- Returns:
- Major version
-
getVersionMinor
public String getVersionMinor()
Returns the minor version.- Returns:
- Minor version
-
getCodeName
public String getCodeName()
Returns the code name of this version- Returns:
- Code name string
-
getVersionPatch
public int getVersionPatch()
Returns the patch level.- Returns:
- patch level
-
getVersionIdentifier
public String getVersionIdentifier()
Returns the version identifier.- Returns:
- Version identifier
-
-