| |
|
| java.lang.Object com.vividsolutions.jump.JUMPVersion
JUMPVersion | public class JUMPVersion (Code) | | JUMP version information.
Versions consist of a 3-part version number: major.minor.patch
An optional release status string may be present in the string version of
the version.
version: 1.2 |
Field Summary | |
final public static JUMPVersion | CURRENT_VERSION The current version number of the JTS API. | final public static int | MAJOR The major version number. | final public static int | MINOR The minor version number. | final public static int | PATCH The patch version number. |
Method Summary | |
public int | getMajor() Gets the major number of the release version. | public int | getMinor() Gets the minor number of the release version. | public int | getPatch() Gets the patch number of the release version. | public static void | main(String[] args) Prints the current JTS version to stdout. | public String | toString() Gets the full version number, suitable for display. |
CURRENT_VERSION | final public static JUMPVersion CURRENT_VERSION(Code) | | The current version number of the JTS API.
|
MAJOR | final public static int MAJOR(Code) | | The major version number.
|
MINOR | final public static int MINOR(Code) | | The minor version number.
|
PATCH | final public static int PATCH(Code) | | The patch version number.
|
getMajor | public int getMajor()(Code) | | Gets the major number of the release version.
the major number of the release version. |
getMinor | public int getMinor()(Code) | | Gets the minor number of the release version.
the minor number of the release version. |
getPatch | public int getPatch()(Code) | | Gets the patch number of the release version.
the patch number of the release version. |
main | public static void main(String[] args)(Code) | | Prints the current JTS version to stdout.
Parameters: args - the command-line arguments (none are required). |
toString | public String toString()(Code) | | Gets the full version number, suitable for display.
the full version number, suitable for display. |
|
|
|