Version constructor

Version(
  1. int major,
  2. int minor,
  3. int patch,
  4. int buildNumber
)

Default constructor for Version.

Params:

  • major: the major field of the version.
  • minor: the minor field of the version.
  • patch: the patch field of the version.
  • buildNumber: the build number field of the version.

Implementation

Version