net.dankito.utils.Version.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-utils Show documentation
Show all versions of java-utils Show documentation
Some basic utils needed in many projects
The newest version!
package net.dankito.utils
class Version(val major: Int, val minor: Int, val patch: Int = 0, val build: String? = null) {
private constructor() : this(0, 0, 0) // for Jackson
}