Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.