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 String
getCodeName()
Returns the code name of this versionString
getDisplayFull()
String
getDisplayShort()
Returns the display string of this version.String
getVersionIdentifier()
Returns the version identifier.String
getVersionMajor()
Returns the major version.String
getVersionMinor()
Returns the minor version.int
getVersionPatch()
Returns the patch level.String
getVersionString()
boolean
isBeta()
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
true
if 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
-
-