Package wprover
Class Version
- java.lang.Object
-
- wprover.Version
-
public class Version extends java.lang.ObjectVersion is a class that provides version information for the Geometry Expert project. It includes methods to retrieve the version number, project name, and release date.
-
-
Constructor Summary
Constructors Constructor Description Version()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringgetData()Returns the date as a string.static java.lang.StringgetNameAndVersion()Returns the project name and version as a single string.static java.lang.StringgetProject()Returns the project name.static java.lang.StringgetVersion()Returns the project name surrounded by spaces.static java.lang.StringgetVersion1()Returns the version as a string.
-
-
-
Method Detail
-
getVersion1
public static final java.lang.String getVersion1()
Returns the version as a string.- Returns:
- the version string
-
getNameAndVersion
public static final java.lang.String getNameAndVersion()
Returns the project name and version as a single string.- Returns:
- the project name and version string
-
getVersion
public static final java.lang.String getVersion()
Returns the project name surrounded by spaces.- Returns:
- the project name with surrounding spaces
-
getProject
public static final java.lang.String getProject()
Returns the project name.- Returns:
- the project name
-
getData
public static final java.lang.String getData()
Returns the date as a string.- Returns:
- the date string
-
-