Version information. Remarks: Note that this class is static.
Definition at line 24 of file Version.java.
◆ getBuild()
The build version
Definition at line 49 of file Version.java.
51 Native.IntPtr major =
new Native.IntPtr(), minor =
new Native.IntPtr(), build =
new Native.IntPtr(), revision =
new Native.IntPtr();
52 Native.getVersion(major, minor, build, revision);
◆ getFullVersion()
static String getFullVersion |
( |
| ) |
|
|
inlinestatic |
A full version string
Definition at line 69 of file Version.java.
71 return Native.getFullVersion();
◆ getMajor()
The major version
Definition at line 29 of file Version.java.
31 Native.IntPtr major =
new Native.IntPtr(), minor =
new Native.IntPtr(), build =
new Native.IntPtr(), revision =
new Native.IntPtr();
32 Native.getVersion(major, minor, build, revision);
◆ getMinor()
The minor version
Definition at line 39 of file Version.java.
41 Native.IntPtr major =
new Native.IntPtr(), minor =
new Native.IntPtr(), build =
new Native.IntPtr(), revision =
new Native.IntPtr();
42 Native.getVersion(major, minor, build, revision);
◆ getRevision()
static int getRevision |
( |
| ) |
|
|
inlinestatic |
The revision
Definition at line 59 of file Version.java.
61 Native.IntPtr major =
new Native.IntPtr(), minor =
new Native.IntPtr(), build =
new Native.IntPtr(), revision =
new Native.IntPtr();
62 Native.getVersion(major, minor, build, revision);
63 return revision.value;
◆ getString()
static String getString |
( |
| ) |
|
|
inlinestatic |
A string representation of the version information.
Definition at line 77 of file Version.java.
79 Native.IntPtr major =
new Native.IntPtr(), minor =
new Native.IntPtr(), build =
new Native.IntPtr(), revision =
new Native.IntPtr();
80 Native.getVersion(major, minor, build, revision);
81 return Integer.toString(major.value) +
"." + Integer.toString(minor.value) +
"."
82 + Integer.toString(build.value) +
"." + Integer.toString(revision.value);