Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/umermansoor/version.java
A Java class for representing the version number of software, library, framework or other system.
https://github.com/umermansoor/version.java
Last synced: 7 days ago
JSON representation
A Java class for representing the version number of software, library, framework or other system.
- Host: GitHub
- URL: https://github.com/umermansoor/version.java
- Owner: umermansoor
- Created: 2013-01-05T06:51:50.000Z (almost 12 years ago)
- Default Branch: develop
- Last Pushed: 2013-01-23T06:24:34.000Z (almost 12 years ago)
- Last Synced: 2024-04-15T04:22:50.831Z (9 months ago)
- Language: Java
- Size: 109 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Version Class
A class to represent version information. This class cannot be inherited. This class is thread-safe as it is immutable and can be freely shared between threads without any external synchronization.
A version object represented by this class is of the following format:
X.Y.Z.b
where,
* X = Major component of the version.
* Y = Minor component of the version.
* Z = Revision component of the version.
* b = Build component of the version.This class is inspired from the Version class in .NET Framework 4.0.