Package coneforest.psylla
Class Version
- java.lang.Object
-
- coneforest.psylla.Version
-
public class Version extends Object
A class holding versioning information.
-
-
Constructor Summary
Constructors Constructor Description Version()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
getMajor()
Get the major version number.static int
getMinor()
Get the minor version number.static String
getReleaseType()
Get the release type.static int
getRevision()
Get the revision version number.static String
getVersion()
Get the version string.
-
-
-
Method Detail
-
getVersion
public static String getVersion()
Get the version string.- Returns:
- the version string.
-
getMajor
public static int getMajor()
Get the major version number.- Returns:
- the major version number.
-
getMinor
public static int getMinor()
Get the minor version number.- Returns:
- the minor version number.
-
getRevision
public static int getRevision()
Get the revision version number.- Returns:
- the revision version number.
-
getReleaseType
public static String getReleaseType()
Get the release type.- Returns:
- the release type.
-
-